]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/outline.el (outline-open): Revert 'text' back to " open ".
authorJuri Linkov <juri@linkov.net>
Mon, 19 Sep 2022 20:12:17 +0000 (23:12 +0300)
committerJuri Linkov <juri@linkov.net>
Mon, 19 Sep 2022 20:12:17 +0000 (23:12 +0300)
(outline-close): Revert 'text' back to " close ".
(outline-close-rtl): Remove 'text' since it's inherited from the parent
'outline-close'.

lisp/outline.el

index ab37e398e98d212d2eed641f3e01811d17709ad9..3aebc25e13019925ebd071be2f778a2442c2767c 100644 (file)
@@ -315,7 +315,7 @@ Note that this feature is meant to be used in editing buffers."
   '((image "outline-open.svg" "outline-open.pbm" :height 15)
     (emoji "🔽")
     (symbol " ▼ ")
-    (text " v "))
+    (text " open "))
   "Icon used for buttons for opened sections in outline buffers."
   :version "29.1"
   :help-echo "Close this section")
@@ -324,7 +324,7 @@ Note that this feature is meant to be used in editing buffers."
   '((image "outline-close.svg" "outline-close.pbm" :height 15)
     (emoji "▶️")
     (symbol " ▶ ")
-    (text " > "))
+    (text " close "))
   "Icon used for buttons for closed sections in outline buffers."
   :version "29.1"
   :help-echo "Open this section")
@@ -332,8 +332,7 @@ Note that this feature is meant to be used in editing buffers."
 (define-icon outline-close-rtl outline-close
   '((image "outline-close.svg" "outline-close.pbm" :height 15 :rotation 180)
     (emoji "◀️")
-    (symbol " ◀ ")
-    (text " < "))
+    (symbol " ◀ "))
   "Right-to-left icon used for buttons in closed outline sections."
   :version "29.1")