diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/edebug.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/lispref/edebug.texi b/doc/lispref/edebug.texi index 8942f55affb..323130f2378 100644 --- a/doc/lispref/edebug.texi +++ b/doc/lispref/edebug.texi | |||
| @@ -1510,11 +1510,11 @@ form specifications (that is, @code{form}, @code{body}, @code{def-form}, and | |||
| 1510 | must be in the form itself rather than at a higher level. | 1510 | must be in the form itself rather than at a higher level. |
| 1511 | 1511 | ||
| 1512 | Backtracking is also disabled after successfully matching a quoted | 1512 | Backtracking is also disabled after successfully matching a quoted |
| 1513 | symbol or string specification, since this usually indicates a | 1513 | symbol, string specification, or @code{&define} keyword, since this |
| 1514 | recognized construct. But if you have a set of alternative constructs that | 1514 | usually indicates a recognized construct. But if you have a set of |
| 1515 | all begin with the same symbol, you can usually work around this | 1515 | alternative constructs that all begin with the same symbol, you can |
| 1516 | constraint by factoring the symbol out of the alternatives, e.g., | 1516 | usually work around this constraint by factoring the symbol out of the |
| 1517 | @code{["foo" &or [first case] [second case] ...]}. | 1517 | alternatives, e.g., @code{["foo" &or [first case] [second case] ...]}. |
| 1518 | 1518 | ||
| 1519 | Most needs are satisfied by these two ways that backtracking is | 1519 | Most needs are satisfied by these two ways that backtracking is |
| 1520 | automatically disabled, but occasionally it is useful to explicitly | 1520 | automatically disabled, but occasionally it is useful to explicitly |