diff options
author | Juri Linkov <juri@jurta.org> | 2005-12-30 05:57:19 +0000 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2005-12-30 05:57:19 +0000 |
commit | 3d3d2b8ab11d9c0c2a8da76e9f16131fc58862b6 (patch) | |
tree | edcb2bb1711d5e8b56bff7310f70f9861751e8d6 /lisp/paren.el | |
parent | deefca64961cb84172616119ece746cd5274620e (diff) | |
download | emacs-3d3d2b8ab11d9c0c2a8da76e9f16131fc58862b6.tar.gz |
(show-paren-match, show-paren-mismatch): Use existing group
`paren-showing-faces'.
Diffstat (limited to 'lisp/paren.el')
-rw-r--r-- | lisp/paren.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/paren.el b/lisp/paren.el index f5327c3b344..8b5a134d2d4 100644 --- a/lisp/paren.el +++ b/lisp/paren.el @@ -72,8 +72,8 @@ otherwise)." :group 'paren-showing :version "20.3") -(defgroup paren-showing-faces () - "Group for faces of Show Paren mode" +(defgroup paren-showing-faces nil + "Group for faces of Show Paren mode." :group 'paren-showing :group 'faces :version "22.1") @@ -88,7 +88,7 @@ otherwise)." (t :background "gray")) "Show Paren mode face used for a matching paren." - :group 'show-paren-faces) + :group 'paren-showing-faces) ;; backward-compatibility alias (put 'show-paren-match-face 'face-alias 'show-paren-match) @@ -96,7 +96,7 @@ otherwise)." '((((class color)) (:foreground "white" :background "purple")) (t (:inverse-video t))) "Show Paren mode face used for a mismatching paren." - :group 'show-paren-faces) + :group 'paren-showing-faces) ;; backward-compatibility alias (put 'show-paren-mismatch-face 'face-alias 'show-paren-mismatch) |