diff options
author | Juri Linkov <juri@linkov.net> | 2022-12-12 19:30:55 +0200 |
---|---|---|
committer | Juri Linkov <juri@linkov.net> | 2022-12-12 19:30:55 +0200 |
commit | 527eb11de20ac77877e5eaf67fa145515bd9a6d4 (patch) | |
tree | 6f180cf8fdd9bd6d74a3f9acef2b85aa57bd6ad2 /lisp/minibuffer.el | |
parent | 42d740fb2cb25eef26a5d2e3cab86fa38f909652 (diff) | |
download | emacs-527eb11de20ac77877e5eaf67fa145515bd9a6d4.tar.gz emacs-527eb11de20ac77877e5eaf67fa145515bd9a6d4.tar.bz2 emacs-527eb11de20ac77877e5eaf67fa145515bd9a6d4.zip |
* lisp/minibuffer.el (completions-group-separator): Revert f7816c94b6.
Change face attribute from :underline back to :strike-through.
https://lists.gnu.org/archive/html/emacs-devel/2022-10/msg01792.html
Diffstat (limited to 'lisp/minibuffer.el')
-rw-r--r-- | lisp/minibuffer.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index 5faa3c8d4e8..6e42296e7ba 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el @@ -1326,9 +1326,9 @@ pair of a group title string and a list of group candidate strings." :version "28.1") (defface completions-group-separator - '((t :inherit shadow :underline t)) + '((t :inherit shadow :strike-through t)) "Face used for the separator lines between the candidate groups." - :version "29.1") + :version "28.1") (defun completion--cycle-threshold (metadata) (let* ((cat (completion-metadata-get metadata 'category)) |