]> git.eshelyaron.com Git - emacs.git/commitdiff
(font-lock-keywords): Docstring fixes.
authorLute Kamstra <lute@gnu.org>
Fri, 8 Apr 2005 12:51:07 +0000 (12:51 +0000)
committerLute Kamstra <lute@gnu.org>
Fri, 8 Apr 2005 12:51:07 +0000 (12:51 +0000)
lisp/ChangeLog
lisp/font-lock.el

index 49e5e50851f688b56b8383e7cd3fac5ebc64eedb..4bdc5caa94ee4f54d6a27e0b223e4e9c4ed02429 100644 (file)
@@ -1,3 +1,7 @@
+2005-04-08  Lute Kamstra  <lute@gnu.org>
+
+       * font-lock.el (font-lock-keywords): Docstring fixes.
+
 2005-04-08  Kenichi Handa  <handa@m17n.org>
 
        * ps-mule.el (ps-mule-show-warning): If the number of unprintable
index 6b86d3274ed89c0a68ba9b3708283f320d3cba0b..c047bed0677b2cbd8ded85e4d2794337cf45ec99 100644 (file)
@@ -383,14 +383,14 @@ word \"bar\" following the word \"anchor\" then MATCH-ANCHORED may be required.
 
 MATCH-HIGHLIGHT should be of the form:
 
- (MATCH FACENAME OVERRIDE LAXMATCH)
+ (MATCH FACENAME [[OVERRIDE [LAXMATCH]])
 
 MATCH is the subexpression of MATCHER to be highlighted.  FACENAME is an
 expression whose value is the face name to use.  Face default attributes
 can be modified via \\[customize].  Instead of a face, FACENAME can
-evaluate to a property list of the form (face VAL1 PROP2 VAL2 PROP3 VAL3 ...)
+evaluate to a property list of the form (face FACE PROP1 VAL1 PROP2 VAL2 ...)
 in which case all the listed text-properties will be set rather than
-just `face'.  In such a case, you will most likely want to put those
+just FACE.  In such a case, you will most likely want to put those
 properties in `font-lock-extra-managed-props' or to override
 `font-lock-unfontify-region-function'.
 
@@ -426,7 +426,7 @@ the last, instance MATCH-ANCHORED's MATCHER is used.  Therefore they can be
 used to initialise before, and cleanup after, MATCHER is used.  Typically,
 PRE-MATCH-FORM is used to move to some position relative to the original
 MATCHER, before starting with MATCH-ANCHORED's MATCHER.  POST-MATCH-FORM might
-be used to move, before resuming with MATCH-ANCHORED's parent's MATCHER.
+be used to move back, before resuming with MATCH-ANCHORED's parent's MATCHER.
 
 For example, an element of the form highlights (if not already highlighted):
 
@@ -436,7 +436,7 @@ For example, an element of the form highlights (if not already highlighted):
  discrete occurrences of \"item\" (on the same line) in the value of `item-face'.
  (Here PRE-MATCH-FORM and POST-MATCH-FORM are nil.  Therefore \"item\" is
  initially searched for starting from the end of the match of \"anchor\", and
- searching for subsequent instance of \"anchor\" resumes from where searching
+ searching for subsequent instances of \"anchor\" resumes from where searching
  for \"item\" concluded.)
 
 The above-mentioned exception is as follows.  The limit of the MATCHER search