diff options
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/syntax.c b/src/syntax.c index b217404e87d..116249fe283 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -1307,7 +1307,9 @@ except that `]' is never special and `\\' quotes `^', `-' or `\\' | |||
| 1307 | (but not as the end of a range; quoting is never needed there). | 1307 | (but not as the end of a range; quoting is never needed there). |
| 1308 | Thus, with arg "a-zA-Z", this skips letters stopping before first nonletter. | 1308 | Thus, with arg "a-zA-Z", this skips letters stopping before first nonletter. |
| 1309 | With arg "^a-zA-Z", skips nonletters stopping before first letter. | 1309 | With arg "^a-zA-Z", skips nonletters stopping before first letter. |
| 1310 | Returns the distance traveled, either zero or positive. */) | 1310 | Returns the distance traveled, either zero or positive. |
| 1311 | Note that char classes, e.g. `[:alpha:]', are not currently supported; | ||
| 1312 | they will be treated as literals. */) | ||
| 1311 | (string, lim) | 1313 | (string, lim) |
| 1312 | Lisp_Object string, lim; | 1314 | Lisp_Object string, lim; |
| 1313 | { | 1315 | { |
| @@ -2994,7 +2996,7 @@ See the info node `(elisp)Syntax Properties' for a description of the | |||
| 2994 | 2996 | ||
| 2995 | DEFVAR_BOOL ("open-paren-in-column-0-is-defun-start", | 2997 | DEFVAR_BOOL ("open-paren-in-column-0-is-defun-start", |
| 2996 | &open_paren_in_column_0_is_defun_start, | 2998 | &open_paren_in_column_0_is_defun_start, |
| 2997 | doc: /* Non-nil means an open paren in column 0 denotes the start of a defun. */); | 2999 | doc: /* *Non-nil means an open paren in column 0 denotes the start of a defun. */); |
| 2998 | open_paren_in_column_0_is_defun_start = 1; | 3000 | open_paren_in_column_0_is_defun_start = 1; |
| 2999 | 3001 | ||
| 3000 | defsubr (&Ssyntax_table_p); | 3002 | defsubr (&Ssyntax_table_p); |