aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2008-10-06 10:03:59 +0000
committerAndreas Schwab2008-10-06 10:03:59 +0000
commitb55426e9880dec69108d2e56cd6095b0a4abd975 (patch)
tree236ba1257b9a4ff5b19b9047a24bb46c9783d1d3
parent6a8b4632645ea3d5f065be5849982f98148dc340 (diff)
downloademacs-b55426e9880dec69108d2e56cd6095b0a4abd975.tar.gz
emacs-b55426e9880dec69108d2e56cd6095b0a4abd975.zip
(syntax-ppss): Doc fix.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/emacs-lisp/syntax.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c404c3ca43b..57d4b21bad7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12008-10-06 Andreas Schwab <schwab@suse.de>
2
3 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
4
12008-10-06 Martin Rudalics <rudalics@gmx.at> 52008-10-06 Martin Rudalics <rudalics@gmx.at>
2 6
3 * mail/footnote.el: Remove * in defcustom docstrings and tell 7 * mail/footnote.el: Remove * in defcustom docstrings and tell
diff --git a/lisp/emacs-lisp/syntax.el b/lisp/emacs-lisp/syntax.el
index be607c52c68..cef6ab30d4c 100644
--- a/lisp/emacs-lisp/syntax.el
+++ b/lisp/emacs-lisp/syntax.el
@@ -122,7 +122,7 @@ point (where the PPSS is equivalent to nil).")
122 syntax-ppss-stats)) 122 syntax-ppss-stats))
123 123
124(defun syntax-ppss (&optional pos) 124(defun syntax-ppss (&optional pos)
125 "Parse-Partial-Sexp State at POS. 125 "Parse-Partial-Sexp State at POS, defaulting to point.
126The returned value is the same as `parse-partial-sexp' except that 126The returned value is the same as `parse-partial-sexp' except that
127the 2nd and 6th values of the returned state cannot be relied upon. 127the 2nd and 6th values of the returned state cannot be relied upon.
128Point is at POS when this function returns." 128Point is at POS when this function returns."