diff options
author | Sean Whitton <spwhitton@spwhitton.name> | 2025-03-12 09:20:05 +0800 |
---|---|---|
committer | Sean Whitton <spwhitton@spwhitton.name> | 2025-03-12 09:20:05 +0800 |
commit | 261205dbb57f77e3426df9f27fcc5429aae48c05 (patch) | |
tree | b61561e46ddd03873045144aeea3dbfd7eb7d82a /lisp/emacs-lisp | |
parent | ffb7d656a2c89f86ccd2de51379de9612c7a4aa3 (diff) | |
download | emacs-261205dbb57f77e3426df9f27fcc5429aae48c05.tar.gz emacs-261205dbb57f77e3426df9f27fcc5429aae48c05.tar.bz2 emacs-261205dbb57f77e3426df9f27fcc5429aae48c05.zip |
; Replace non-standard "CLisp" abbreviation for "Common Lisp"
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 30cbfaf24f3..a5769e0815e 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -513,7 +513,7 @@ This will generate compile-time constants from BINDINGS." ;; Constant values. (,(lambda (bound) (lisp-mode--search-key ":" bound)) (0 font-lock-builtin-face)) - ;; ELisp and CLisp `&' keywords as types. + ;; ELisp and Common Lisp `&' keywords as types. (,(lambda (bound) (lisp-mode--search-key "&" bound)) (0 font-lock-type-face)) ;; ELisp regexp grouping constructs @@ -568,7 +568,7 @@ This will generate compile-time constants from BINDINGS." ;; Constant values. (,(lambda (bound) (lisp-mode--search-key ":" bound)) (0 font-lock-builtin-face)) - ;; ELisp and CLisp `&' keywords as types. + ;; ELisp and Common Lisp `&' keywords as types. (,(lambda (bound) (lisp-mode--search-key "&" bound)) (0 font-lock-type-face)) ;; ELisp regexp grouping constructs |