diff options
author | Mauro Aranda <maurooaranda@gmail.com> | 2025-03-13 06:48:39 -0300 |
---|---|---|
committer | Mauro Aranda <maurooaranda@gmail.com> | 2025-03-13 06:48:39 -0300 |
commit | 32ff6c9db150e5a4819cc4d7795dddfa554cad2c (patch) | |
tree | c02216ce38d3e7f13b32ab39f2680c08cde4cc23 /lisp/cus-edit.el | |
parent | 1528d315643d864204f327acb4ec19dd8d859de8 (diff) | |
download | emacs-32ff6c9db150e5a4819cc4d7795dddfa554cad2c.tar.gz emacs-32ff6c9db150e5a4819cc4d7795dddfa554cad2c.tar.bz2 emacs-32ff6c9db150e5a4819cc4d7795dddfa554cad2c.zip |
Recognize graphic as a type when customizing a face
* lisp/cus-edit.el (custom-display): Add checkbox for graphic.
(Bug#76975)
Diffstat (limited to 'lisp/cus-edit.el')
-rw-r--r-- | lisp/cus-edit.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index 5cfd2b774b7..ecfce03e490 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -3619,6 +3619,10 @@ Only match the specified window systems.") type) (checklist :inline t :offset 0 + (const :format "Graphic " + :sibling-args (:help-echo "\ +Any graphics-capable display") + graphic) (const :format "X " :sibling-args (:help-echo "\ The X11 Window System.") |