]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix icon spec for outline icons
authorPo Lu <luangruo@yahoo.com>
Fri, 16 Sep 2022 09:16:48 +0000 (17:16 +0800)
committerPo Lu <luangruo@yahoo.com>
Fri, 16 Sep 2022 09:18:02 +0000 (17:18 +0800)
* lisp/outline.el (outline-open):
(outline-close): Fix listing of multiple images.  Reported by
Lars Ingebrigtsen <larsi@gnus.org>.

lisp/outline.el

index 25f3b21e632c8884d23461cf21b9d52e0d8e4dab..8281f24291da9d21880694b08b1fcd7ba95e998a 100644 (file)
@@ -293,8 +293,8 @@ buffers (yet) -- that will be amended in a future version."
   :version "29.1")
 
 (define-icon outline-open nil
-  '((image "outline-open.svg" :height 15 :ascent center)
-    (image "outline-open.pbm" :height 15 :ascent center)
+  '((image "outline-open.svg" "outline-open.pbm"
+           :height 15 :ascent center)
     (emoji "🔽")
     (symbol " ▼ ")
     (text " open "))
@@ -303,8 +303,8 @@ buffers (yet) -- that will be amended in a future version."
   :help-echo "Open this section")
 
 (define-icon outline-close nil
-  '((image "outline-close.svg" :height 15 :ascent center)
-    (image "outline-close.pbm" :height 15 :ascent center)
+  '((image "outline-close.svg" "outline-close.pbm"
+           :height 15 :ascent center)
     (emoji "▶️")
     (symbol " ▶ ")
     (text " close "))