From e87644baa3239ce57a5620d3d38352acc1113fa4 Mon Sep 17 00:00:00 2001
From: Stephen Berman <stephen.berman@gmx.net>
Date: Wed, 29 Nov 2023 18:44:35 +0100
Subject: [PATCH] ; 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.
---
 lisp/man.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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)
-- 
2.39.5