]> git.eshelyaron.com Git - emacs.git/commitdiff
(lisp-font-lock-keywords-1): Recognize an autoload
authorRichard M. Stallman <rms@gnu.org>
Tue, 14 Sep 1999 17:32:51 +0000 (17:32 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 14 Sep 1999 17:32:51 +0000 (17:32 +0000)
cookie, even if followed by a letter.

lisp/font-lock.el

index fe45bf5675a9e49626a85252dedb72c2a81062f5..9dcb8a3facb41dc019df962be783407ff912074a 100644 (file)
@@ -1964,7 +1964,7 @@ This function could be MATCHER in a MATCH-ANCHORED `font-lock-keywords' item."
               nil t))
      ;;
      ;; Emacs Lisp autoload cookies.
-     '("^;;;###\\(autoload\\)\\>" 1 font-lock-warning-face prepend)
+     '("^;;;###\\(autoload\\)" 1 font-lock-warning-face prepend)
      ))
   "Subdued level highlighting for Lisp modes.")