aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/cus-face.el
diff options
context:
space:
mode:
authorJimmy Aguilar Mena2019-09-04 17:27:28 +0200
committerJimmy Aguilar Mena2019-10-14 14:18:39 +0200
commitbc8db39775eb3af36a45d51130cd4dbd3b3e7210 (patch)
tree9d7d643568943137bc436a7ecd021b2e07245e0e /lisp/cus-face.el
parentf9206f34d63104c50659a15d3615646a09df87bf (diff)
downloademacs-bc8db39775eb3af36a45d51130cd4dbd3b3e7210.tar.gz
emacs-bc8db39775eb3af36a45d51130cd4dbd3b3e7210.zip
Added face parameter :extend.
This is an initial change to add a parameter :extend that will be used in the display engine later.
Diffstat (limited to 'lisp/cus-face.el')
-rw-r--r--lisp/cus-face.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/cus-face.el b/lisp/cus-face.el
index d73bce42c3e..5a49a810434 100644
--- a/lisp/cus-face.el
+++ b/lisp/cus-face.el
@@ -233,7 +233,11 @@
233 (file :tag "File" 233 (file :tag "File"
234 :help-echo "Name of bitmap file." 234 :help-echo "Name of bitmap file."
235 :must-match t))) 235 :must-match t)))
236 236 (:extend
237 (choice :tag "Extend"
238 :help-echo "Control whether attributes should be extended after EOL."
239 (const :tag "Off" nil)
240 (const :tag "On" t)))
237 (:inherit 241 (:inherit
238 (repeat :tag "Inherit" 242 (repeat :tag "Inherit"
239 :help-echo "List of faces to inherit attributes from." 243 :help-echo "List of faces to inherit attributes from."