1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 14:30:50 -08:00

Merge remote-tracking branch 'savannah/master' into master-android-1

This commit is contained in:
Po Lu 2025-02-12 11:16:54 +08:00
commit 02485d2982
5 changed files with 36 additions and 12 deletions

View file

@ -559,7 +559,9 @@ This will generate compile-time constants from BINDINGS."
(,(concat "(" cl-errs-re "\\_>")
(1 font-lock-warning-face))
;; Words inside and `' tend to be symbol names.
(,(concat "[`]\\(" (rx lisp-mode-symbol) "\\)[']")
(,(concat "[`]\\("
(rx (* lisp-mode-symbol (+ space)) lisp-mode-symbol)
"\\)[']")
(1 font-lock-constant-face prepend))
;; Uninterned symbols, e.g., (defpackage #:my-package ...)
;; must come before keywords below to have effect