diff options
author | Dave Love <fx@gnu.org> | 2003-01-31 15:39:48 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2003-01-31 15:39:48 +0000 |
commit | b222e4153cff00bee8d20e52996891a4a52d80c0 (patch) | |
tree | e27fb41823d7544a3e09a807ec74e72e5443fcc2 /src/syntax.c | |
parent | 0819bf7ed2c2684b929a643a11086a7d842b6009 (diff) | |
download | emacs-b222e4153cff00bee8d20e52996891a4a52d80c0.tar.gz |
(Fskip_chars_forward)
(open-paren-in-column-0-is-defun-start): Doc fix.
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 `\\' (but not as the end of a range; quoting is never needed there). Thus, with arg "a-zA-Z", this skips letters stopping before first nonletter. With arg "^a-zA-Z", skips nonletters stopping before first letter. -Returns the distance traveled, either zero or positive. */) +Returns the distance traveled, either zero or positive. +Note that char classes, e.g. `[:alpha:]', are not currently supported; +they will be treated as literals. */) (string, lim) Lisp_Object string, lim; { @@ -2994,7 +2996,7 @@ See the info node `(elisp)Syntax Properties' for a description of the DEFVAR_BOOL ("open-paren-in-column-0-is-defun-start", &open_paren_in_column_0_is_defun_start, - doc: /* Non-nil means an open paren in column 0 denotes the start of a defun. */); + doc: /* *Non-nil means an open paren in column 0 denotes the start of a defun. */); open_paren_in_column_0_is_defun_start = 1; defsubr (&Ssyntax_table_p); |