aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2003-01-31 15:39:48 +0000
committerDave Love2003-01-31 15:39:48 +0000
commitb222e4153cff00bee8d20e52996891a4a52d80c0 (patch)
treee27fb41823d7544a3e09a807ec74e72e5443fcc2 /src
parent0819bf7ed2c2684b929a643a11086a7d842b6009 (diff)
downloademacs-b222e4153cff00bee8d20e52996891a4a52d80c0.tar.gz
emacs-b222e4153cff00bee8d20e52996891a4a52d80c0.zip
(Fskip_chars_forward)
(open-paren-in-column-0-is-defun-start): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/syntax.c6
2 files changed, 9 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 06580d307a0..d062b482bb2 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12003-01-31 Dave Love <fx@gnu.org>
2
3 * syntax.c (Fskip_chars_forward)
4 (open-paren-in-column-0-is-defun-start): Doc fix.
5
12003-01-31 Joe Buehler <jhpb@draco.hekimian.com> 62003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
2 7
3 * fileio.c: Support // at start of name for Cygwin (just added proper 8 * fileio.c: Support // at start of name for Cygwin (just added proper
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);