diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-09-19 09:12:46 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-09-19 09:12:46 +0000 |
commit | 22c53b836cef981ca227e9a2b059946c9892eb2c (patch) | |
tree | c0a37122f009e674904b4a4aeace03b25f39983e /lisp | |
parent | f5be4dfd960ce82ec1bd2c4ced7056118d7b01bd (diff) | |
download | emacs-22c53b836cef981ca227e9a2b059946c9892eb2c.tar.gz emacs-22c53b836cef981ca227e9a2b059946c9892eb2c.tar.bz2 emacs-22c53b836cef981ca227e9a2b059946c9892eb2c.zip |
(mh-ps-print-msg-show): Fix misplaced parenthesis in previous change.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mh-e/mh-print.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mh-e/mh-print.el b/lisp/mh-e/mh-print.el index 6b2e8a3474e..41d6a1a0020 100644 --- a/lisp/mh-e/mh-print.el +++ b/lisp/mh-e/mh-print.el @@ -153,7 +153,7 @@ interactive use." "Print current show buffer to FILE." (interactive (list (mh-ps-print-preprint current-prefix-arg))) (message "mh-ps-print-msg-show file %s keys %s mh-show-buffer %s" - file (this-command-keys mh-show-buffer)) + file (this-command-keys) mh-show-buffer) (let ((msg (mh-get-msg-num t)) (folder mh-current-folder) (show-buffer mh-show-buffer) |