# HG changeset patch # User Juri Linkov # Date 1135922239 0 # Node ID cf3a03548c1854b9f59b2f99bc3336e147cd897c # Parent 24b085b976167b56370ca5a5d91c5be81dd9ec3e (show-paren-match, show-paren-mismatch): Use existing group `paren-showing-faces'. diff -r 24b085b97616 -r cf3a03548c18 lisp/paren.el --- a/lisp/paren.el Fri Dec 30 05:56:39 2005 +0000 +++ b/lisp/paren.el Fri Dec 30 05:57:19 2005 +0000 @@ -72,8 +72,8 @@ :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 @@ (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 @@ '((((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)