aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2022-07-30 15:36:16 +0200
committerLars Ingebrigtsen2022-07-30 15:36:30 +0200
commitd34e38f7d14ff45c19102676dc53f5389e8f32f6 (patch)
tree94715709f3f00e92c5617463b04679f4cc64b48c
parent76f49943c3baf1fa342889e08c5b6b86c2736437 (diff)
downloademacs-d34e38f7d14ff45c19102676dc53f5389e8f32f6.tar.gz
emacs-d34e38f7d14ff45c19102676dc53f5389e8f32f6.zip
Make the symbol icons in outline.el more logical
* lisp/outline.el (outline-open, outline-close): Use symbols from the same series so that it's more likely that they match up (bug#56823).
-rw-r--r--lisp/outline.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/outline.el b/lisp/outline.el
index 1aba79784f5..7750f9a75d0 100644
--- a/lisp/outline.el
+++ b/lisp/outline.el
@@ -295,7 +295,7 @@ buffers (yet) -- that will be amended in a future version."
295 295
296(define-icon outline-open button 296(define-icon outline-open button
297 '((emoji "▶️") 297 '((emoji "▶️")
298 (symbol " ") 298 (symbol " ")
299 (text " open ")) 299 (text " open "))
300 "Icon used for buttons for opening a section in outline buffers." 300 "Icon used for buttons for opening a section in outline buffers."
301 :version "29.1" 301 :version "29.1"
@@ -303,7 +303,7 @@ buffers (yet) -- that will be amended in a future version."
303 303
304(define-icon outline-close button 304(define-icon outline-close button
305 '((emoji "🔽") 305 '((emoji "🔽")
306 (symbol " ") 306 (symbol " ")
307 (text " close ")) 307 (text " close "))
308 "Icon used for buttons for closing a section in outline buffers." 308 "Icon used for buttons for closing a section in outline buffers."
309 :version "29.1" 309 :version "29.1"