From 4b84f44015ca4d77500a22058be9e205343ad36d Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Mon, 19 Sep 2022 23:12:17 +0300 Subject: [PATCH] * lisp/outline.el (outline-open): Revert 'text' back to " open ". (outline-close): Revert 'text' back to " close ". (outline-close-rtl): Remove 'text' since it's inherited from the parent 'outline-close'. --- lisp/outline.el | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lisp/outline.el b/lisp/outline.el index ab37e398e98..3aebc25e130 100644 --- a/lisp/outline.el +++ b/lisp/outline.el @@ -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") -- 2.39.2