]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove spurious "nil" from Gnus mode line
authorManuel Giraud <manuel@ledu-giraud.fr>
Thu, 23 Nov 2023 17:14:16 +0000 (09:14 -0800)
committerEric Abrahamsen <eric@ericabrahamsen.net>
Thu, 23 Nov 2023 17:15:34 +0000 (09:15 -0800)
Bug#67322

* lisp/gnus/gnus.el (gnus-mode-line-buffer-identification): Handle a
nil return value from `gnus-emacs-version'.

lisp/gnus/gnus.el

index ffe81e5c585b3da0616dfb981e6210f51942a21c..6bf662331014bd8e2685a50a271dbb675c1f70c7 100644 (file)
@@ -319,7 +319,8 @@ be set in `.emacs' instead."
            (not (stringp str))
            (not (string-match "^Gnus:" str)))
        (list str)
-      (let ((load-path (append (mm-image-load-path) load-path)))
+      (let ((load-path (append (mm-image-load-path) load-path))
+            (gnus-emacs-version (gnus-emacs-version)))
        ;; Add the Gnus logo.
        (add-text-properties
         0 5
@@ -328,13 +329,15 @@ be set in `.emacs' instead."
                '((:type svg :file "gnus-pointer.svg"
                          :ascent center)
                   (:type xpm :file "gnus-pointer.xpm"
-                           :ascent center)
+                        :ascent center)
                  (:type xbm :file "gnus-pointer.xbm"
                         :ascent center))
                t)
-              'help-echo (format
-                          "This is %s, %s."
-                          gnus-version (gnus-emacs-version)))
+              'help-echo (if gnus-emacs-version
+                              (format
+                              "This is %s, %s."
+                              gnus-version gnus-emacs-version)
+                            (format "This is %s." gnus-version)))
         str)
        (list str)))))