diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-07-25 22:06:08 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-07-25 22:06:08 +0000 |
commit | 021ca129202a3888da7b5b9649a5c63a405b16f6 (patch) | |
tree | 271e85e49b5ddb307e09109d47ed897ce91d07ac /lisp | |
parent | 7556890b5807e62450c0b6e7e603362c9a4f659e (diff) | |
download | emacs-021ca129202a3888da7b5b9649a5c63a405b16f6.tar.gz |
(x-font-regexp-weight-subnum, x-font-regexp-slant-subnum)
(x-font-regexp-swidth-subnum, x-font-regexp-adstyle-subnum): Defconst.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/faces.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index 4b4896d2a4c..429eb8d5ff4 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -553,6 +553,11 @@ set its foreground and background to the default background and foreground." (defconst x-font-regexp-weight nil) (defconst x-font-regexp-slant nil) +(defconst x-font-regexp-weight-subnum 1) +(defconst x-font-regexp-slant-subnum 2) +(defconst x-font-regexp-swidth-subnum 3) +(defconst x-font-regexp-adstyle-subnum 4) + ;;; Regexps matching font names in "Host Portable Character Representation." ;;; (let ((- "[-?]") |