]> git.eshelyaron.com Git - emacs.git/commitdiff
* loadup.el: Load emacs-lisp/syntax, font-lock and jit-lock so
authorDan Nicolaescu <dann@ics.uci.edu>
Mon, 31 Oct 2005 16:41:15 +0000 (16:41 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Mon, 31 Oct 2005 16:41:15 +0000 (16:41 +0000)
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.

lisp/ChangeLog
lisp/emacs-lisp/syntax.el
lisp/font-lock.el
lisp/jit-lock.el
lisp/loadup.el
src/ChangeLog
src/puresize.h

index 709fa5167a178baa61b9fb77b29eff40abba3c6c..e91d94f3aeee3896b169d54cacca5a0f304a921f 100644 (file)
@@ -1,3 +1,16 @@
+2005-10-31  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * 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.
+
 2005-10-31  Nick Roberts  <nickrob@snap.net.nz>
 
        * progmodes/gdb-ui.el (gdb-many-windows): Leave window configuration
index 9c2ac336b9b26bf53c82ce97c7e1faa59be51139..feccf7939c5eef53fd3d5397af7afb03a091cde1 100644 (file)
@@ -109,7 +109,6 @@ point (where the PPSS is equivalent to nil).")
              (error nil)))
          syntax-ppss-stats))
 
-;;;###autoload
 (defun syntax-ppss (&optional pos)
   "Parse-Partial-Sexp State at POS.
 The returned value is the same as `parse-partial-sexp' except that
index 53a3a25f5d0e1aaa6fcf322dae305e8afd360bea..eb830b048e0cc56bb1f93979f67010248489c18f 100644 (file)
@@ -340,7 +340,6 @@ This can be an \"!\" or the \"n\" in \"ifndef\".")
 
 ;; Fontification variables:
 
-;;;###autoload
 (defvar font-lock-keywords nil
   "A list of the keywords to highlight.
 There are two kinds of values: user-level, and compiled.
@@ -630,7 +629,6 @@ Major/minor modes can set this variable if they know which option applies.")
   ;; Shut up the byte compiler.
   (defvar font-lock-face-attributes))  ; Obsolete but respected if set.
 
-;;;###autoload
 (defun font-lock-mode-internal (arg)
   ;; Turn on Font Lock mode.
   (when arg
@@ -652,7 +650,6 @@ Major/minor modes can set this variable if they know which option applies.")
     (font-lock-unfontify-buffer)
     (font-lock-turn-off-thing-lock)))
 
-;;;###autoload
 (defun font-lock-add-keywords (mode keywords &optional append)
   "Add highlighting KEYWORDS for MODE.
 
@@ -771,7 +768,6 @@ see the variables `c-font-lock-extra-types', `c++-font-lock-extra-types',
 ;;      is added and removed several times.
 ;;
 ;; (II) The keywords are removed from the current buffer.
-;;;###autoload
 (defun font-lock-remove-keywords (mode keywords)
   "Remove highlighting KEYWORDS for MODE.
 
@@ -981,7 +977,6 @@ The value of this variable is used when Font Lock mode is turned on."
 ;; directives correctly and cleanly.  (It is the same problem as fontifying
 ;; multi-line strings and comments; regexps are not appropriate for the job.)
 
-;;;###autoload
 (defun font-lock-fontify-buffer ()
   "Fontify the current buffer the way the function `font-lock-mode' would."
   (interactive)
index d3e3be120738b3886392d4657ae715baf9f9b2fe..eb5ace956ebb763bd726f35209a5f0a0e09e1b29 100644 (file)
@@ -264,7 +264,6 @@ the variable `jit-lock-stealth-nice'."
         (remove-hook 'after-change-functions 'jit-lock-after-change t)
         (remove-hook 'fontification-functions 'jit-lock-function))))
 
-;;;###autoload
 (defun jit-lock-register (fun &optional contextual)
   "Register FUN as a fontification function to be called in this buffer.
 FUN will be called with two arguments START and END indicating the region
index 093f0ce4d1315e7170e6b5ed9995a86e428a6cce..d821e411c671836cf7019595545b067d3f58f819 100644 (file)
 (load "frame")
 (load "term/tty-colors")
 (load "font-core")
+(load "emacs-lisp/syntax")
+(load "font-lock")
+(load "jit-lock")
 
 (load "facemenu")
 (if (fboundp 'track-mouse)
index d5cdd48ad298ef6aeebdaf815f5c31b592bedce1..808b10cabe5e2e7e2a4f28438f860146edaee886 100644 (file)
@@ -1,3 +1,7 @@
+2005-10-31  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * puresize.h (BASE_PURESIZE): Increment to 1170000.
+
 2005-10-31  Romain Francoise  <romain@orebokech.com>
 
        * macfns.c: Update copyright year.
index 8c755ea76a87f32d28bb5beecf8294f29c29ed74..b9942a90753af548b313282466dd91b29f86b342 100644 (file)
@@ -42,7 +42,7 @@ Boston, MA 02110-1301, USA.  */
 #endif
 
 #ifndef BASE_PURESIZE
-#define BASE_PURESIZE (1130000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA)
+#define BASE_PURESIZE (1170000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA)
 #endif
 
 /* Increase BASE_PURESIZE by a ratio depending on the machine's word size.  */