aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLute Kamstra2005-04-25 11:09:30 +0000
committerLute Kamstra2005-04-25 11:09:30 +0000
commit77f5a70d861628d70b1669bc05c14d90ed2de4ab (patch)
treeec3c1f93ba463504442737b56e6923eeb5046b24
parent87ede5a106cd381c246944c0f432e6b11bf4e5d2 (diff)
downloademacs-77f5a70d861628d70b1669bc05c14d90ed2de4ab.tar.gz
emacs-77f5a70d861628d70b1669bc05c14d90ed2de4ab.zip
(font-lock-defaults): Fix docstring.
-rw-r--r--lisp/font-core.el11
1 files changed, 5 insertions, 6 deletions
diff --git a/lisp/font-core.el b/lisp/font-core.el
index 5bf30d4d6c5..a077ce756c0 100644
--- a/lisp/font-core.el
+++ b/lisp/font-core.el
@@ -32,7 +32,7 @@
32 "Defaults for Font Lock mode specified by the major mode. 32 "Defaults for Font Lock mode specified by the major mode.
33Defaults should be of the form: 33Defaults should be of the form:
34 34
35 (KEYWORDS KEYWORDS-ONLY CASE-FOLD SYNTAX-ALIST SYNTAX-BEGIN ...) 35 (KEYWORDS [KEYWORDS-ONLY [CASE-FOLD [SYNTAX-ALIST [SYNTAX-BEGIN ...]]]])
36 36
37KEYWORDS may be a symbol (a variable or function whose value is the keywords to 37KEYWORDS may be a symbol (a variable or function whose value is the keywords to
38use for fontification) or a list of symbols. If KEYWORDS-ONLY is non-nil, 38use for fontification) or a list of symbols. If KEYWORDS-ONLY is non-nil,
@@ -66,11 +66,10 @@ textual modes (i.e., the mode-dependent function is known to put point and mark
66around a text block relevant to that mode). 66around a text block relevant to that mode).
67 67
68Other variables include that for syntactic keyword fontification, 68Other variables include that for syntactic keyword fontification,
69`font-lock-syntactic-keywords' 69`font-lock-syntactic-keywords' and those for buffer-specialized fontification
70and those for buffer-specialized fontification functions, 70functions, `font-lock-fontify-buffer-function',
71`font-lock-fontify-buffer-function', `font-lock-unfontify-buffer-function', 71`font-lock-unfontify-buffer-function', `font-lock-fontify-region-function',
72`font-lock-fontify-region-function', `font-lock-unfontify-region-function', 72`font-lock-unfontify-region-function', and `font-lock-inhibit-thing-lock'.")
73`font-lock-inhibit-thing-lock' and `font-lock-maximum-size'.")
74(make-variable-buffer-local 'font-lock-defaults) 73(make-variable-buffer-local 'font-lock-defaults)
75 74
76(defvar font-lock-defaults-alist nil 75(defvar font-lock-defaults-alist nil