diff options
author | Juri Linkov <juri@jurta.org> | 2014-07-02 03:57:53 +0300 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2014-07-02 03:57:53 +0300 |
commit | 8b3c1354a94cc7533e65a691053090b9096e69d7 (patch) | |
tree | 04ebcb99d5c2d9ec334dec5368e29a7b0e9a0885 /lisp/man.el | |
parent | a4b0fffe25592751c19b618ba06f2faaa6490ff9 (diff) | |
download | emacs-8b3c1354a94cc7533e65a691053090b9096e69d7.tar.gz |
* lisp/man.el (Man-bgproc-sentinel): Use `Man-page-from-arguments'
for the message about the man page cleaned up.
Diffstat (limited to 'lisp/man.el')
-rw-r--r-- | lisp/man.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/man.el b/lisp/man.el index c14231212d0..4b235302f8b 100644 --- a/lisp/man.el +++ b/lisp/man.el @@ -1432,7 +1432,8 @@ manpage command." (if Man-fontify-manpage-flag (message "%s man page formatted" (Man-page-from-arguments Man-arguments)) - (message "%s man page cleaned up" Man-arguments)) + (message "%s man page cleaned up" + (Man-page-from-arguments Man-arguments))) (unless (and (processp process) (not (eq (process-status process) 'exit))) (setq mode-line-process nil)) |