]> git.eshelyaron.com Git - emacs.git/commitdiff
(c-before-font-lock-function): Correct a typo in the doc string.
authorAlan Mackenzie <acm@muc.de>
Sun, 6 Apr 2008 20:34:25 +0000 (20:34 +0000)
committerAlan Mackenzie <acm@muc.de>
Sun, 6 Apr 2008 20:34:25 +0000 (20:34 +0000)
lisp/progmodes/cc-langs.el

index 73040221eaa2be21935887e058b8e821aa4181fd..c1e7af569986b47351796c6f4d6b7a8854987f5a 100644 (file)
@@ -445,7 +445,7 @@ exit; on entry, the buffer will have been widened and match-data
 will have been saved; the return value is ignored.
 
 The function may extend the region to be fontified by setting the
-buffer local variables c-old-BEG and c-old-END.
+buffer local variables c-new-BEG and c-new-END.
 
 The function is called even when font locking is disabled.
 
@@ -728,13 +728,14 @@ definition, or nil if the language doesn't have any."
        "define"))
 
 (c-lang-defconst c-opt-cpp-macro-define-start
-  ;; Regexp matching everything up to the macro body of a cpp define,
-  ;; or the end of the logical line if there is none.  Set if
-  ;; c-opt-cpp-macro-define is.
+  ;; Regexp matching everything up to the macro body of a cpp define, or the
+  ;; end of the logical line if there is none.  Submatch 1 is the name of the
+  ;; macro.  Set if c-opt-cpp-macro-define is.
   t (if (c-lang-const c-opt-cpp-macro-define)
        (concat (c-lang-const c-opt-cpp-prefix)
                (c-lang-const c-opt-cpp-macro-define)
-               "[ \t]+\\(\\sw\\|_\\)+\\(\([^\)]*\)\\)?"
+               "[ \t]+\\(\\(\\sw\\|_\\)+\\)\\(\([^\)]*\)\\)?"
+               ;;       ^                 ^ #defined name
                "\\([ \t]\\|\\\\\n\\)*")))
 (c-lang-defvar c-opt-cpp-macro-define-start
   (c-lang-const c-opt-cpp-macro-define-start))