From: Richard M. Stallman Date: Tue, 14 Sep 1999 17:32:51 +0000 (+0000) Subject: (lisp-font-lock-keywords-1): Recognize an autoload X-Git-Tag: emacs-pretest-21.0.90~6722 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=731dd88518ab3c15631bfb794d3f7a4cf30b389d;p=emacs.git (lisp-font-lock-keywords-1): Recognize an autoload cookie, even if followed by a letter. --- diff --git a/lisp/font-lock.el b/lisp/font-lock.el index fe45bf5675a..9dcb8a3facb 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el @@ -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.")