diff options
| -rw-r--r-- | lisp/help-fns.el | 6 |
1 files changed, 3 insertions, 3 deletions
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." | |||
| 271 | (search-backward "(") | 271 | (search-backward "(") |
| 272 | (goto-char (scan-sexps (point) 1))))) | 272 | (goto-char (scan-sexps (point) 1))))) |
| 273 | ;; Highlight aguments in the USAGE string | 273 | ;; Highlight aguments in the USAGE string |
| 274 | (setq usage (help-do-arg-highlight (buffer-string) args)))) | 274 | (setq usage (help-do-arg-highlight (buffer-string) args)) |
| 275 | ;; Highlight arguments in the DOC string | 275 | ;; Highlight arguments in the DOC string |
| 276 | (setq doc (and doc (help-do-arg-highlight doc args))) | 276 | (setq doc (and doc (help-do-arg-highlight doc args))))) |
| 277 | ;; Return value is like the one from help-split-fundoc, but highlighted | 277 | ;; Return value is like the one from help-split-fundoc, but highlighted |
| 278 | (cons usage doc))) | 278 | (cons usage doc))) |
| 279 | 279 | ||