aboutsummaryrefslogtreecommitdiffstats
path: root/src/syntax.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c6
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).
1308Thus, with arg "a-zA-Z", this skips letters stopping before first nonletter. 1308Thus, with arg "a-zA-Z", this skips letters stopping before first nonletter.
1309With arg "^a-zA-Z", skips nonletters stopping before first letter. 1309With arg "^a-zA-Z", skips nonletters stopping before first letter.
1310Returns the distance traveled, either zero or positive. */) 1310Returns the distance traveled, either zero or positive.
1311Note that char classes, e.g. `[:alpha:]', are not currently supported;
1312they 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);