From: Stephen Berman Date: Wed, 29 Nov 2023 17:44:35 +0000 (+0100) Subject: ; Fix typos in a recent man.el change X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e87644baa3239ce57a5620d3d38352acc1113fa4;p=emacs.git ; Fix typos in a recent man.el change * lisp/man.el (Man-getpage-in-background): Delete unintended space characters in the strings for the buffer name. --- diff --git a/lisp/man.el b/lisp/man.el index f18e2f50b7c..3efa29d7aad 100644 --- a/lisp/man.el +++ b/lisp/man.el @@ -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)