emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 8914fb2: Do not output two spaces for non-autoloaded ieieo constr


From: Lars Ingebrigtsen
Subject: master 8914fb2: Do not output two spaces for non-autoloaded ieieo constructor functions
Date: Sun, 27 Dec 2020 18:40:22 -0500 (EST)

branch: master
commit 8914fb2227b51851ab734513938c38de7d01902e
Author: Tim Landscheidt <tim@tim-landscheidt.de>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Do not output two spaces for non-autoloaded ieieo constructor functions
    
    * lisp/emacs-lisp/eieio-opt.el (eieio-help-constructor): Amend
    format to avoid two spaces for non-autoloaded object constructor
    functions (bug#45454).
    
    Copyright-paperwork-exempt: yes
---
 lisp/emacs-lisp/eieio-opt.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/emacs-lisp/eieio-opt.el b/lisp/emacs-lisp/eieio-opt.el
index 59af7e1..3b222b9 100644
--- a/lisp/emacs-lisp/eieio-opt.el
+++ b/lisp/emacs-lisp/eieio-opt.el
@@ -136,9 +136,9 @@ are not abstract."
          (def (symbol-function ctr)))
       (goto-char (point-min))
       (prin1 ctr)
-      (insert (format " is an %s object constructor function"
+      (insert (format " is an %sobject constructor function"
                      (if (autoloadp def)
-                         "autoloaded"
+                         "autoloaded "
                        "")))
       (when (and (autoloadp def)
                 (null location))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]