From: Po Lu Date: Fri, 16 Sep 2022 09:16:48 +0000 (+0800) Subject: Fix icon spec for outline icons X-Git-Tag: emacs-29.0.90~1856^2~463 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cdb8106bec97c6a4d1e34a7ce98a54dfe2060d5a;p=emacs.git Fix icon spec for outline icons * lisp/outline.el (outline-open): (outline-close): Fix listing of multiple images. Reported by Lars Ingebrigtsen . --- diff --git a/lisp/outline.el b/lisp/outline.el index 25f3b21e632..8281f24291d 100644 --- a/lisp/outline.el +++ b/lisp/outline.el @@ -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 "))