diff options
author | Deepak Goel <deego@gnufans.org> | 2007-12-06 00:17:56 +0000 |
---|---|---|
committer | Deepak Goel <deego@gnufans.org> | 2007-12-06 00:17:56 +0000 |
commit | f6e7ec024870e8ccaaed5bc2e0d92fde7554e16b (patch) | |
tree | a3477c8e5705009d64f3b58a94e4845639468698 /lisp/apropos.el | |
parent | 8aa8da0595964fc0a0e5980b05afed9050031abe (diff) | |
download | emacs-f6e7ec024870e8ccaaed5bc2e0d92fde7554e16b.tar.gz |
Fix possibly buggy calls to `message'.
Diffstat (limited to 'lisp/apropos.el')
-rw-r--r-- | lisp/apropos.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/apropos.el b/lisp/apropos.el index 9fddf0103fb..f9720e1bcdb 100644 --- a/lisp/apropos.el +++ b/lisp/apropos.el @@ -449,7 +449,7 @@ while a list of strings is used as a word list." "command or function" "command")) current-prefix-arg)) (apropos-parse-pattern pattern) - (let ((message + (let ((message "%s" (let ((standard-output (get-buffer-create "*Apropos*"))) (print-help-return-message 'identity)))) (or do-all (setq do-all apropos-do-all)) |