diff options
| author | Richard M. Stallman | 2006-04-26 19:32:20 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2006-04-26 19:32:20 +0000 |
| commit | 8ac3a4558235a44bdf7591e38b5ab19f8efad055 (patch) | |
| tree | 6fc27821f3bac4574c2bc71593d33fd166fcd9fc | |
| parent | 8b03732ee066a88a13db238aa84385c32c78e8b2 (diff) | |
| download | emacs-8ac3a4558235a44bdf7591e38b5ab19f8efad055.tar.gz emacs-8ac3a4558235a44bdf7591e38b5ab19f8efad055.zip | |
(Parsing Expressions): Minor cleanup.
| -rw-r--r-- | lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | lispref/syntax.texi | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 48205488ef8..ac6bd07a175 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-04-26 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * syntax.texi (Parsing Expressions): Minor cleanup. | ||
| 4 | |||
| 1 | 2006-04-18 Richard Stallman <rms@gnu.org> | 5 | 2006-04-18 Richard Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * tips.texi (Coding Conventions): Explain when the package's | 7 | * tips.texi (Coding Conventions): Explain when the package's |
diff --git a/lispref/syntax.texi b/lispref/syntax.texi index 523053f214c..1575ebeb850 100644 --- a/lispref/syntax.texi +++ b/lispref/syntax.texi | |||
| @@ -672,8 +672,9 @@ the parse: | |||
| 672 | 672 | ||
| 673 | @enumerate 0 | 673 | @enumerate 0 |
| 674 | @item | 674 | @item |
| 675 | The depth in parentheses, counting from 0. Beware, it can | 675 | The depth in parentheses, counting from 0. @strong{Warning:} this can |
| 676 | become negative if there are more closing parens than opening ones. | 676 | be negative if there are more close parens than open parens between |
| 677 | the start of the defun and point. | ||
| 677 | 678 | ||
| 678 | @item | 679 | @item |
| 679 | @cindex innermost containing parentheses | 680 | @cindex innermost containing parentheses |