* lisp/emacs-lisp/eldoc.el (eldoc-highlight-function-argument):

Use font-lock-keyword-face for macros and special forms.

Fixes: debbugs:8345
This commit is contained in:
Michael Heerdegen 2013-02-17 20:30:27 -05:00 committed by Stefan Monnier
parent a51e9ff76c
commit 587feed443
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2013-02-18 Michael Heerdegen <michael_heerdegen@web.de>
* emacs-lisp/eldoc.el (eldoc-highlight-function-argument):
Use font-lock-keyword-face for macros and special forms (bug#8345).
2013-02-17 Didier Verna <didier@didierverna.net>
* net/network-stream.el (network-stream-open-starttls):

View file

@ -356,7 +356,8 @@ In the absence of INDEX, just call `eldoc-docstring-format-sym-doc'."
(setq doc (copy-sequence args))
(add-text-properties start end (list 'face argument-face) doc))
(setq doc (eldoc-docstring-format-sym-doc
sym doc 'font-lock-function-name-face))
sym doc (if (functionp sym) 'font-lock-function-name-face
'font-lock-keyword-face)))
doc)))
;; Return a string containing a brief (one-line) documentation string for