From: Juanma Barranquero Date: Sun, 9 May 2004 01:28:34 +0000 (+0000) Subject: (help-highlight-arguments): Fix braino. X-Git-Tag: ttn-vms-21-2-B4~6340 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=60c249555a746c612407dc28b9d21caf533ba50b;p=emacs.git (help-highlight-arguments): Fix braino. --- diff --git a/lisp/help-fns.el b/lisp/help-fns.el index 51850288b70..724cfb3b504 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el @@ -271,9 +271,9 @@ KIND should be `var' for a variable or `subr' for a subroutine." (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)))