diff options
| author | Eli Zaretskii | 2019-02-12 19:32:55 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2019-02-12 19:32:55 +0200 |
| commit | b384996e86cb5172dd0d5283f178de7f2654a2f4 (patch) | |
| tree | 856552819fee3751c21975b2cb8d9d2d9b94c9c7 | |
| parent | 71fc6d204b5952fc1fdbe005cf16f09f6641d0f5 (diff) | |
| download | emacs-b384996e86cb5172dd0d5283f178de7f2654a2f4.tar.gz emacs-b384996e86cb5172dd0d5283f178de7f2654a2f4.zip | |
Minor fixes in ELisp manual wrt syntax-table properties
* doc/lispref/syntax.texi (Syntax Properties): Fix reference
to syntax-table properties. (Bug#34455)
(Control Parsing): Remove redundant @vindex entry.
| -rw-r--r-- | doc/lispref/syntax.texi | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/doc/lispref/syntax.texi b/doc/lispref/syntax.texi index 90d380f5b84..0c43a8fa32f 100644 --- a/doc/lispref/syntax.texi +++ b/doc/lispref/syntax.texi | |||
| @@ -556,8 +556,8 @@ the current syntax table in the usual way. | |||
| 556 | 556 | ||
| 557 | @defvar parse-sexp-lookup-properties | 557 | @defvar parse-sexp-lookup-properties |
| 558 | If this is non-@code{nil}, the syntax scanning functions, like | 558 | If this is non-@code{nil}, the syntax scanning functions, like |
| 559 | @code{forward-sexp}, pay attention to syntax text properties. | 559 | @code{forward-sexp}, pay attention to @code{syntax-table} text |
| 560 | Otherwise they use only the current syntax table. | 560 | properties. Otherwise they use only the current syntax table. |
| 561 | @end defvar | 561 | @end defvar |
| 562 | 562 | ||
| 563 | @defvar syntax-propertize-function | 563 | @defvar syntax-propertize-function |
| @@ -927,9 +927,9 @@ nicely. | |||
| 927 | 927 | ||
| 928 | @defvar multibyte-syntax-as-symbol | 928 | @defvar multibyte-syntax-as-symbol |
| 929 | If this variable is non-@code{nil}, @code{scan-sexps} treats all | 929 | If this variable is non-@code{nil}, @code{scan-sexps} treats all |
| 930 | non-@acronym{ASCII} characters as symbol constituents regardless | 930 | non-@acronym{ASCII} characters as symbol constituents regardless of |
| 931 | of what the syntax table says about them. (However, text properties | 931 | what the syntax table says about them. (However, @code{syntax-table |
| 932 | can still override the syntax.) | 932 | }text properties can still override the syntax.) |
| 933 | @end defvar | 933 | @end defvar |
| 934 | 934 | ||
| 935 | @defopt parse-sexp-ignore-comments | 935 | @defopt parse-sexp-ignore-comments |
| @@ -939,7 +939,6 @@ whitespace by the functions in this section and by @code{forward-sexp}, | |||
| 939 | @code{scan-lists} and @code{scan-sexps}. | 939 | @code{scan-lists} and @code{scan-sexps}. |
| 940 | @end defopt | 940 | @end defopt |
| 941 | 941 | ||
| 942 | @vindex parse-sexp-lookup-properties | ||
| 943 | The behavior of @code{parse-partial-sexp} is also affected by | 942 | The behavior of @code{parse-partial-sexp} is also affected by |
| 944 | @code{parse-sexp-lookup-properties} (@pxref{Syntax Properties}). | 943 | @code{parse-sexp-lookup-properties} (@pxref{Syntax Properties}). |
| 945 | 944 | ||