comparison lisp/emacs-lisp/syntax.el @ 90261:7beb78bc1f8e

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.
author Miles Bader <miles@gnu.org>
date Mon, 16 Jan 2006 08:37:27 +0000
parents 0ca0d9181b5e 621fdbc28285
children c5406394f567
comparison
equal deleted inserted replaced
90260:0ca0d9181b5e 90261:7beb78bc1f8e
107 (condition-case nil 107 (condition-case nil
108 (cons (car x) (truncate (/ (cdr x) (car x)))) 108 (cons (car x) (truncate (/ (cdr x) (car x))))
109 (error nil))) 109 (error nil)))
110 syntax-ppss-stats)) 110 syntax-ppss-stats))
111 111
112 ;;;###autoload
113 (defun syntax-ppss (&optional pos) 112 (defun syntax-ppss (&optional pos)
114 "Parse-Partial-Sexp State at POS. 113 "Parse-Partial-Sexp State at POS.
115 The returned value is the same as `parse-partial-sexp' except that 114 The returned value is the same as `parse-partial-sexp' except that
116 the 2nd and 6th values of the returned state cannot be relied upon. 115 the 2nd and 6th values of the returned state cannot be relied upon.
117 Point is at POS when this function returns." 116 Point is at POS when this function returns."