]> git.eshelyaron.com Git - emacs.git/commitdiff
Nikolaj Schumacher <n_schumacher at web.de> (tiny change)
authorGlenn Morris <rgm@gnu.org>
Fri, 24 Aug 2007 02:30:59 +0000 (02:30 +0000)
committerGlenn Morris <rgm@gnu.org>
Fri, 24 Aug 2007 02:30:59 +0000 (02:30 +0000)
(eldoc-highlight-function-argument): New face.
(eldoc-highlight-function-argument): Use it.

lisp/emacs-lisp/eldoc.el

index 8b2538d299cce84ad4151d3fba567be20552c7ca..1d2441f884a35cdf0ed7f208422c434ab0daf5ef 100644 (file)
@@ -101,6 +101,11 @@ truncated to make more of the arglist or documentation string visible."
  enable argument list to fit on one line" truncate-sym-name-if-fit))
   :group 'eldoc)
 
+(defface eldoc-highlight-function-argument
+  '((t (:inherit bold)))
+  "Face used for the argument at point in a function's argument list."
+  :group 'eldoc)
+
 ;;; No user options below here.
 
 (defvar eldoc-message-commands-table-size 31
@@ -303,7 +308,7 @@ highlights argument number INDEX. "
 In the absence of INDEX, just call `eldoc-docstring-format-sym-doc'."
   (let ((start          nil)
        (end            0)
-       (argument-face  'bold))
+       (argument-face  'eldoc-highlight-function-argument))
     ;; Find the current argument in the argument string.  We need to
     ;; handle `&rest' and informal `...' properly.
     ;;