# HG changeset patch # User Juanma Barranquero # Date 1084066114 0 # Node ID f263b4b25c9e96077a81dc59f0435fb49d0e1042 # Parent bc9d102f6ae2e43baa6476cbf54b936c7469395e (help-highlight-arguments): Fix braino. diff -r bc9d102f6ae2 -r f263b4b25c9e lisp/help-fns.el --- 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)))