diff options
| author | Juri Linkov | 2022-09-19 23:12:17 +0300 |
|---|---|---|
| committer | Juri Linkov | 2022-09-19 23:12:17 +0300 |
| commit | 4b84f44015ca4d77500a22058be9e205343ad36d (patch) | |
| tree | 02641ff6198b7e9e3dd1b5adc4fc8c51b5ee21eb | |
| parent | 8c159a26575b84708257840fc500632e182ed798 (diff) | |
| download | emacs-4b84f44015ca4d77500a22058be9e205343ad36d.tar.gz emacs-4b84f44015ca4d77500a22058be9e205343ad36d.zip | |
* 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'.
| -rw-r--r-- | lisp/outline.el | 7 |
1 files 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." | |||
| 315 | '((image "outline-open.svg" "outline-open.pbm" :height 15) | 315 | '((image "outline-open.svg" "outline-open.pbm" :height 15) |
| 316 | (emoji "🔽") | 316 | (emoji "🔽") |
| 317 | (symbol " ▼ ") | 317 | (symbol " ▼ ") |
| 318 | (text " v ")) | 318 | (text " open ")) |
| 319 | "Icon used for buttons for opened sections in outline buffers." | 319 | "Icon used for buttons for opened sections in outline buffers." |
| 320 | :version "29.1" | 320 | :version "29.1" |
| 321 | :help-echo "Close this section") | 321 | :help-echo "Close this section") |
| @@ -324,7 +324,7 @@ Note that this feature is meant to be used in editing buffers." | |||
| 324 | '((image "outline-close.svg" "outline-close.pbm" :height 15) | 324 | '((image "outline-close.svg" "outline-close.pbm" :height 15) |
| 325 | (emoji "▶️") | 325 | (emoji "▶️") |
| 326 | (symbol " ▶ ") | 326 | (symbol " ▶ ") |
| 327 | (text " > ")) | 327 | (text " close ")) |
| 328 | "Icon used for buttons for closed sections in outline buffers." | 328 | "Icon used for buttons for closed sections in outline buffers." |
| 329 | :version "29.1" | 329 | :version "29.1" |
| 330 | :help-echo "Open this section") | 330 | :help-echo "Open this section") |
| @@ -332,8 +332,7 @@ Note that this feature is meant to be used in editing buffers." | |||
| 332 | (define-icon outline-close-rtl outline-close | 332 | (define-icon outline-close-rtl outline-close |
| 333 | '((image "outline-close.svg" "outline-close.pbm" :height 15 :rotation 180) | 333 | '((image "outline-close.svg" "outline-close.pbm" :height 15 :rotation 180) |
| 334 | (emoji "◀️") | 334 | (emoji "◀️") |
| 335 | (symbol " ◀ ") | 335 | (symbol " ◀ ")) |
| 336 | (text " < ")) | ||
| 337 | "Right-to-left icon used for buttons in closed outline sections." | 336 | "Right-to-left icon used for buttons in closed outline sections." |
| 338 | :version "29.1") | 337 | :version "29.1") |
| 339 | 338 | ||