]> git.eshelyaron.com Git - emacs.git/commitdiff
(font-lock-mode): Doc fix.
authorRomain Francoise <romain@orebokech.com>
Thu, 20 Oct 2005 05:48:50 +0000 (05:48 +0000)
committerRomain Francoise <romain@orebokech.com>
Thu, 20 Oct 2005 05:48:50 +0000 (05:48 +0000)
lisp/ChangeLog
lisp/font-core.el

index 56e49dd666a477c4d5531557242fdaebe866c827..b7d10e75ea7ab6fd2650c5baab1dfccc838e0e7e 100644 (file)
@@ -1,3 +1,7 @@
+2005-10-20  Romain Francoise  <romain@orebokech.com>
+
+       * font-core.el (font-lock-mode): Doc fix.
+
 2005-10-20  Kim F. Storm  <storm@cua.dk>
 
        * ido.el (ido-is-tramp-root): Simplify regexp matching tramp root.
index 4af6e1c41f0af7248b8a3a5ac0f3765235ccd33f..27212f9fc6823a02c3a390e5f82f384244ec0a1e 100644 (file)
@@ -118,17 +118,14 @@ of `font-lock-global-modes'.  For example, put in your ~/.emacs:
 
  (global-font-lock-mode t)
 
-There are a number of support modes that may be used to speed up Font Lock mode
-in various ways, specified via the variable `font-lock-support-mode'.  Where
-major modes support different levels of fontification, you can use the variable
-`font-lock-maximum-decoration' to specify which level you generally prefer.
-When you turn Font Lock mode on/off the buffer is fontified/defontified, though
-fontification occurs only if the buffer is less than `font-lock-maximum-size'.
+Where major modes support different levels of fontification, you can use
+the variable `font-lock-maximum-decoration' to specify which level you
+generally prefer.  When you turn Font Lock mode on/off the buffer is
+fontified/defontified, though fontification occurs only if the buffer is
+less than `font-lock-maximum-size'.
 
-For example, to specify that Font Lock mode uses Lazy Lock mode as a support
-mode and use maximum levels of fontification, put in your ~/.emacs:
+For example, to use maximum levels of fontification, put in your ~/.emacs:
 
- (setq font-lock-support-mode 'lazy-lock-mode)
  (setq font-lock-maximum-decoration t)
 
 To add your own highlighting for some major mode, and modify the highlighting