mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
Merge from origin/emacs-25
b134c20Sync with gnulibbb30fa9Fix last change on 2016-01-02488a72f; Spelling fixes9b1aab9Port run-prolog EMACS to SWI-Prolog 7.2.30e7bcecAvoid crashes due to unreasonably large or small text scaling85f257cImprove documentation of 'with-eval-after-load'668c7bcImprove handling of non-ASCII characters in Git log messagesb570769Remove undefined behavior in OS X dumper.97211f3Fix clipping of xwidgetse87fbc0Improve Lisp-level documentation of tooltips9f1786eFaces names should not end in "-face".3283271* src/xsmfns.c (syms_of_xsmfns): Remove stray "s in doc strings.a1f221bComint and compile no longer set EMACS5c28890* lisp/subr.el (read-key): Don't let the prompt linger (bug#2...a75b9a6Merge branch 'emacs-25' of git.savannah.gnu.org:/srv/git/emac...c93ae7aAllow to customize names of executables used by grep.elf6497c6Set locale encoding to UTF-8 when run from OS X GUI.7ad1d07Avoid signaling errors in 'M-n' at the 'C-x C-f' prompta3f1ac2Avoid infinite loop in 'studlify-word'f36df4bDon’t recommend obsolete EMACS env varfb0b531* lisp/emacs-lisp/package.el: Change from a few days ago need...
This commit is contained in:
commit
435da5d295
30 changed files with 408 additions and 141 deletions
|
|
@ -398,6 +398,9 @@ This will generate compile-time constants from BINDINGS."
|
|||
lisp-el-font-lock-keywords-1
|
||||
`( ;; Regexp negated char group.
|
||||
("\\[\\(\\^\\)" 1 font-lock-negation-char-face prepend)
|
||||
;; Erroneous structures.
|
||||
(,(concat "(" el-errs-re "\\_>")
|
||||
(1 font-lock-warning-face))
|
||||
;; Control structures. Common Lisp forms.
|
||||
(lisp--el-match-keyword . 1)
|
||||
;; Exit/Feature symbols as constants.
|
||||
|
|
@ -405,9 +408,6 @@ This will generate compile-time constants from BINDINGS."
|
|||
"[ \t']*\\(" lisp-mode-symbol-regexp "\\)?")
|
||||
(1 font-lock-keyword-face)
|
||||
(2 font-lock-constant-face nil t))
|
||||
;; Erroneous structures.
|
||||
(,(concat "(" el-errs-re "\\_>")
|
||||
(1 font-lock-warning-face prepend))
|
||||
;; Words inside \\[] tend to be for `substitute-command-keys'.
|
||||
(,(concat "\\\\\\\\\\[\\(" lisp-mode-symbol-regexp "\\)\\]")
|
||||
(1 font-lock-constant-face prepend))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue