Mercurial > emacs
changeset 49551:fd7582381b9e
(Fskip_chars_forward)
(open-paren-in-column-0-is-defun-start): Doc fix.
author | Dave Love <fx@gnu.org> |
---|---|
date | Fri, 31 Jan 2003 15:38:54 +0000 |
parents | 950737d7271d |
children | 5fc04772d0bd |
files | src/syntax.c |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/syntax.c Fri Jan 31 15:28:46 2003 +0000 +++ b/src/syntax.c Fri Jan 31 15:38:54 2003 +0000 @@ -1307,7 +1307,9 @@ (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 @@ 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);