diff options
| author | Luc Teirlinck | 2005-06-10 22:59:17 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2005-06-10 22:59:17 +0000 |
| commit | 4b53b8d7eed13c7b1487c8afbc1246cd590e317d (patch) | |
| tree | ac9b5c0ab3b6a881c079e228883195e6bd503031 | |
| parent | 2a516a73dd431f743bbcd239cbdc7dc68b71d4ba (diff) | |
| download | emacs-4b53b8d7eed13c7b1487c8afbc1246cd590e317d.tar.gz emacs-4b53b8d7eed13c7b1487c8afbc1246cd590e317d.zip | |
(Parsing Expressions): Fix Texinfo error.
| -rw-r--r-- | lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | lispref/syntax.texi | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 6696bf6b0b9..8ae4ff7dedb 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2005-06-10 Luc Teirlinck <teirllm@auburn.edu> | ||
| 2 | |||
| 3 | * syntax.texi (Parsing Exprssions): Fix Texinfo error. | ||
| 4 | |||
| 1 | 2005-06-10 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2005-06-10 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * syntax.texi (Parsing Expressions): Document syntax-ppss. | 7 | * syntax.texi (Parsing Expressions): Document syntax-ppss. |
diff --git a/lispref/syntax.texi b/lispref/syntax.texi index 28298ba0f34..8efda55b18d 100644 --- a/lispref/syntax.texi +++ b/lispref/syntax.texi | |||
| @@ -734,7 +734,7 @@ that have nested parentheses. | |||
| 734 | This function returns the state that the parser would have at position | 734 | This function returns the state that the parser would have at position |
| 735 | @var{pos}, if it were started with a default start state at the | 735 | @var{pos}, if it were started with a default start state at the |
| 736 | beginning of the buffer. Thus, it is equivalent to | 736 | beginning of the buffer. Thus, it is equivalent to |
| 737 | @code(parse-partial-sexp (point-min) @var{pos}), except that | 737 | @code{(parse-partial-sexp (point-min) @var{pos})}, except that |
| 738 | @code{syntax-ppss} uses a cache to speed up the computation. Also, | 738 | @code{syntax-ppss} uses a cache to speed up the computation. Also, |
| 739 | the 2nd value (previous complete subexpression) and 6th value (minimum | 739 | the 2nd value (previous complete subexpression) and 6th value (minimum |
| 740 | parenthesis depth) of the returned state are not meaningful. | 740 | parenthesis depth) of the returned state are not meaningful. |
| @@ -789,7 +789,7 @@ whitespace by the functions in this section and by @code{forward-sexp}. | |||
| 789 | @end defopt | 789 | @end defopt |
| 790 | 790 | ||
| 791 | @vindex parse-sexp-lookup-properties | 791 | @vindex parse-sexp-lookup-properties |
| 792 | The behaviour of @code{parse-partial-sexp} is also affected by | 792 | The behavior of @code{parse-partial-sexp} is also affected by |
| 793 | @code{parse-sexp-lookup-properties} (@pxref{Syntax Properties}). | 793 | @code{parse-sexp-lookup-properties} (@pxref{Syntax Properties}). |
| 794 | 794 | ||
| 795 | You can use @code{forward-comment} to move forward or backward over | 795 | You can use @code{forward-comment} to move forward or backward over |