Index: lisp/emacs-lisp/eldoc.el =================================================================== RCS file: /sources/emacs/emacs/lisp/emacs-lisp/eldoc.el,v retrieving revision 1.47 diff -d -u -r1.47 eldoc.el --- lisp/emacs-lisp/eldoc.el 19 Aug 2007 03:04:13 -0000 1.47 +++ lisp/emacs-lisp/eldoc.el 22 Aug 2007 20:31:35 -0000 @@ -101,6 +101,11 @@ enable argument list to fit on one line" truncate-sym-name-if-fit)) :group 'eldoc) +(defface eldoc-highlight-function-argument-face + '((default (:weight 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 @@ 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-face)) ;; Find the current argument in the argument string. We need to ;; handle `&rest' and informal `...' properly. ;;