]> git.eshelyaron.com Git - emacs.git/commitdiff
Only output the man page name on failures
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Thu, 14 Jul 2011 17:39:00 +0000 (19:39 +0200)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Thu, 14 Jul 2011 17:39:00 +0000 (19:39 +0200)
* man.el (Man-bgproc-sentinel): Skip any arguments and only output
the man page name.

Fixes: debbugs:6935
lisp/ChangeLog
lisp/man.el

index 936dab89ae54c1c0b0886c665fac08c032c37baf..ec8f794f211af36d34ee9af458095cfe40b96a8e 100644 (file)
@@ -10,6 +10,9 @@
 
 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
+       * man.el (Man-bgproc-sentinel): Skip any arguments and only output
+       the man page name (bug#7929).
+
        * image.el (put-image): Mention the `put-image' overlay property
        (bug#7834).
 
index b5a70395e596f67f7a18b4a11d56cfe6d00fcd59..8782b22c80453f9f064b86e62882155ed83a60ba 100644 (file)
@@ -1257,12 +1257,20 @@ manpage command."
          (Man-mode)
 
          (if (not Man-page-list)
-             (let ((args Man-arguments))
+             (let ((args Man-arguments))
                (kill-buffer (current-buffer))
-               (error "Can't find the %s manpage" args)))
-
-          (set-buffer-modified-p nil)
-          ))
+               (error "Can't find the %s manpage"
+                      ;; Skip arguments and only print the page name.
+                      (mapconcat
+                       'identity
+                       (delete nil
+                               (mapcar
+                                (lambda (elem)
+                                  (and (not (string-match "^-" elem))
+                                       elem))
+                                (split-string args " ")))
+                       " ")))
+           (set-buffer-modified-p nil))))
        ;; Restore case-fold-search before calling
        ;; Man-notify-when-ready because it may switch buffers.