Mercurial > emacs
changeset 55457:f263b4b25c9e
(help-highlight-arguments): Fix braino.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Sun, 09 May 2004 01:28:34 +0000 |
parents | bc9d102f6ae2 |
children | f673d8bf105a |
files | lisp/help-fns.el |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/help-fns.el Sun May 09 00:50:52 2004 +0000 +++ b/lisp/help-fns.el Sun May 09 01:28:34 2004 +0000 @@ -271,9 +271,9 @@ (search-backward "(") (goto-char (scan-sexps (point) 1))))) ;; Highlight aguments in the USAGE string - (setq usage (help-do-arg-highlight (buffer-string) args)))) - ;; Highlight arguments in the DOC string - (setq doc (and doc (help-do-arg-highlight doc args))) + (setq usage (help-do-arg-highlight (buffer-string) args)) + ;; Highlight arguments in the DOC string + (setq doc (and doc (help-do-arg-highlight doc args))))) ;; Return value is like the one from help-split-fundoc, but highlighted (cons usage doc)))