comparison lisp/emacs-lisp/syntax.el @ 66579:621fdbc28285

* loadup.el: Load emacs-lisp/syntax, font-lock and jit-lock so that global-font-lock-mode can be enabled by default. * font-lock.el (font-lock-keywords, font-lock-mode-internal) (font-lock-add-keywords, font-lock-remove-keywords) (font-lock-fontify-buffer): Remove autoload cookies. * jit-lock.el (jit-lock-register): Likewise. * emacs-lisp/syntax.el (syntax-ppss): Likewise. * puresize.h (BASE_PURESIZE): Increment to 1170000.
author Dan Nicolaescu <dann@ics.uci.edu>
date Mon, 31 Oct 2005 16:41:15 +0000
parents 2b7c12a97893
children 067115a6e738 7beb78bc1f8e
comparison
equal deleted inserted replaced
66578:ed2aec2424ae 66579:621fdbc28285
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."