diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-07-27 19:10:36 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-07-27 19:10:36 +0000 |
commit | c8787b81ef88d784f615aa76893b5d858464de23 (patch) | |
tree | 98c0e6192e1ec9ee868427230c1bbd85e812f9dc /lisp/faces.el | |
parent | 69b354ebc8bdc19b99b67c69c062e709b7e7e07f (diff) | |
download | emacs-c8787b81ef88d784f615aa76893b5d858464de23.tar.gz |
(x-font-regexp): Add \\(\\) for substring extraction.
Diffstat (limited to 'lisp/faces.el')
-rw-r--r-- | lisp/faces.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index 429eb8d5ff4..bf9c3302284 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -572,7 +572,7 @@ set its foreground and background to the default background and foreground." ; (swidth "\\(\\*\\|normal\\|semicondensed\\|\\)") ; 3 (swidth "\\([^-]*\\)") ; 3 ; (adstyle "\\(\\*\\|sans\\|\\)") ; 4 - (adstyle "[^-]*") ; 4 + (adstyle "\\([^-]*\\)") ; 4 (pixelsize "[0-9]+") (pointsize "[0-9][0-9]+") (resx "[0-9][0-9]+") |