diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-06-04 13:50:07 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-06-04 13:50:07 +0200 |
commit | a418730a1b071953ac8ed61662664b369b3deac4 (patch) | |
tree | 9f9b58dee8ef54592812313f59a673322daa54b7 /lisp/emacs-lisp/lisp-mode.el | |
parent | f0189819d848e3a0302b7a6ac6979874121f8ee8 (diff) | |
download | emacs-a418730a1b071953ac8ed61662664b369b3deac4.tar.gz |
Fix warnings introduced by the lisp-mode-autoload-regexp change
* lisp/emacs-lisp/lisp-mode.el (lisp-fdefs): The package name bit
in ###;;;foo-autoload may be missing, so do a lax match (bug#55784).
Diffstat (limited to 'lisp/emacs-lisp/lisp-mode.el')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index c2d0efbf50d..aaec13d1afc 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -437,7 +437,7 @@ This will generate compile-time constants from BINDINGS." ;; Emacs Lisp autoload cookies. Supports the slightly different ;; forms used by mh-e, calendar, etc. (,lisp-mode-autoload-regexp (3 font-lock-warning-face prepend) - (2 font-lock-function-name-face prepend))) + (2 font-lock-function-name-face prepend t))) "Subdued level highlighting for Emacs Lisp mode.") (defconst lisp-cl-font-lock-keywords-1 |