aboutsummaryrefslogtreecommitdiffstats
path: root/src/syntax.c
diff options
context:
space:
mode:
authorMiles Bader2006-01-16 08:37:27 +0000
committerMiles Bader2006-01-16 08:37:27 +0000
commit41882805d6711e32ac0f066119226d84dbdedc13 (patch)
tree44f756cef3fbc4de2f229e93613a1a326da7f55d /src/syntax.c
parent6a2bd1a5019d2130c87ac5cf17f1322bf614b624 (diff)
parent28f74fdf77eaab2e9daf54e2d5b0b729c5201e4f (diff)
downloademacs-41882805d6711e32ac0f066119226d84dbdedc13.tar.gz
emacs-41882805d6711e32ac0f066119226d84dbdedc13.zip
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-97
Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 616-696) - Add lisp/mh-e/.arch-inventory - Update from CVS - Merge from gnus--rel--5.10 - Update from CVS: lisp/smerge-mode.el: Add 'tools' to file keywords. - lisp/gnus/ChangeLog: Remove duplicate entry * gnus--rel--5.10 (patch 147-181) - Update from CVS - Merge from emacs--cvs-trunk--0 - Update from CVS: lisp/mml.el (mml-preview): Doc fix. - Update from CVS: texi/message.texi: Fix default values. - Update from CVS: texi/gnus.texi (RSS): Addition.
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syntax.c b/src/syntax.c
index e3e1f27b9d8..32ef35d2d55 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -3244,7 +3244,7 @@ Parsing stops at TO or when certain criteria are met;
3244 point is set to where parsing stops. 3244 point is set to where parsing stops.
3245If fifth arg OLDSTATE is omitted or nil, 3245If fifth arg OLDSTATE is omitted or nil,
3246 parsing assumes that FROM is the beginning of a function. 3246 parsing assumes that FROM is the beginning of a function.
3247Value is a list of ten elements describing final state of parsing: 3247Value is a list of elements describing final state of parsing:
3248 0. depth in parens. 3248 0. depth in parens.
3249 1. character address of start of innermost containing list; nil if none. 3249 1. character address of start of innermost containing list; nil if none.
3250 2. character address of start of last complete sexp terminated. 3250 2. character address of start of last complete sexp terminated.
@@ -3263,7 +3263,7 @@ If third arg TARGETDEPTH is non-nil, parsing stops if the depth
3263in parentheses becomes equal to TARGETDEPTH. 3263in parentheses becomes equal to TARGETDEPTH.
3264Fourth arg STOPBEFORE non-nil means stop when come to 3264Fourth arg STOPBEFORE non-nil means stop when come to
3265 any character that starts a sexp. 3265 any character that starts a sexp.
3266Fifth arg OLDSTATE is a nine-element list like what this function returns. 3266Fifth arg OLDSTATE is a list like what this function returns.
3267 It is used to initialize the state of the parse. Elements number 1, 2, 6 3267 It is used to initialize the state of the parse. Elements number 1, 2, 6
3268 and 8 are ignored; you can leave off element 8 (the last) entirely. 3268 and 8 are ignored; you can leave off element 8 (the last) entirely.
3269Sixth arg COMMENTSTOP non-nil means stop at the start of a comment. 3269Sixth arg COMMENTSTOP non-nil means stop at the start of a comment.