]> git.eshelyaron.com Git - emacs.git/commitdiff
* emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
authorDaniel Colascione <dan.colascione@gmail.com>
Mon, 20 Jun 2011 03:36:16 +0000 (20:36 -0700)
committerDaniel Colascione <dan.colascione@gmail.com>
Mon, 20 Jun 2011 03:36:16 +0000 (20:36 -0700)
lisp/ChangeLog
lisp/emacs-lisp/syntax.el

index cafd440f650948cb3871fd80144c2cadb30799a9..ef76dc69fdc7637fc960ee82e7670dc7187d7650 100644 (file)
@@ -1,3 +1,7 @@
+2011-06-20  Daniel Colascione  <dan.colascione@gmail.com>
+
+       * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
+
 2011-06-19  Chong Yidong  <cyd@stupidchicken.com>
 
        * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
index 7ba7b13af4498b3fd9425215cef77884894bba32..200b3a6389b9333efe040a5e6ee5cf9377f0125a 100644 (file)
@@ -398,8 +398,9 @@ point (where the PPSS is equivalent to nil).")
 
 (defun syntax-ppss (&optional pos)
   "Parse-Partial-Sexp State at POS, defaulting to point.
-The returned value is the same as `parse-partial-sexp' except that
-values 2 and 6 values of the returned state cannot be relied upon.
+The returned value is the same as that of `parse-partial-sexp'
+run from point-min to POS except that values at positions 2 and 6
+in the returned list (counting from 0) cannot be relied upon.
 Point is at POS when this function returns."
   ;; Default values.
   (unless pos (setq pos (point)))