diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-04-13 23:19:01 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-04-13 23:19:10 +0200 |
commit | 6c3869a104075403b10130294e7f307143e09a73 (patch) | |
tree | 11ffce1339e1affabc4ffa80fdac2b444dba72b6 /lisp/emacs-lisp | |
parent | 10c675b96042f184524cc9ea817cad14ff1f7fc0 (diff) | |
download | emacs-6c3869a104075403b10130294e7f307143e09a73.tar.gz emacs-6c3869a104075403b10130294e7f307143e09a73.tar.bz2 emacs-6c3869a104075403b10130294e7f307143e09a73.zip |
Add a new `vtable' face
* doc/misc/vtable.texi (Introduction): Document it.
* lisp/emacs-lisp/vtable.el (vtable): Add a new face.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/vtable.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/vtable.el b/lisp/emacs-lisp/vtable.el index 98106e46700..3e521c94a5c 100644 --- a/lisp/emacs-lisp/vtable.el +++ b/lisp/emacs-lisp/vtable.el @@ -28,6 +28,12 @@ (require 'text-property-search) (require 'mule-util) +(defface vtable + '((t :inherit variable-pitch)) + "Face used (by default) for vtables." + :version "29.1" + :group 'faces) + (cl-defstruct vtable-column "A vtable column." name @@ -79,7 +85,7 @@ formatter displayer (use-header-line t) - (face 'variable-pitch) + (face 'vtable) actions keymap (separator-width 1) sort-by |