]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix typos in a recent man.el change
authorStephen Berman <stephen.berman@gmx.net>
Wed, 29 Nov 2023 17:44:35 +0000 (18:44 +0100)
committerStephen Berman <stephen.berman@gmx.net>
Wed, 29 Nov 2023 17:44:35 +0000 (18:44 +0100)
* lisp/man.el (Man-getpage-in-background): Delete unintended space
characters in the strings for the buffer name.

lisp/man.el

index f18e2f50b7c373be57984d96c55c8cf575c6bcd3..3efa29d7aadcc979cb553729a753624eafa141d3 100644 (file)
@@ -1191,8 +1191,8 @@ Return the buffer in which the manpage will appear."
          (man-args topic)
         (bufname
           (if (file-remote-p default-directory)
-              (format "*Man %s %s *" (file-remote-p default-directory) man-args)
-            (format "*Man %s *" man-args)))
+              (format "*Man %s %s*" (file-remote-p default-directory) man-args)
+            (format "*Man %s*" man-args)))
         (buffer (get-buffer bufname)))
     (if buffer
        (Man-notify-when-ready buffer)