diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 3 | ||||
-rw-r--r-- | lisp/cus-edit.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6231fcac187..1d753ee41b2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2008-07-29 Juri Linkov <juri@jurta.org> + * cus-edit.el (custom-face-tag): Inherit from custom-variable-tag + instead of variable-pitch with bold and 1.2 height. + * dired-aux.el (dired-do-async-shell-command): New command. * dired.el (dired-mode-map): Rebind `dired-flag-garbage-files' diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index 3669ef6d429..80a6ee5ad9c 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -3211,7 +3211,7 @@ Only match frames that support the specified face attributes.") ;;; The `custom-face' Widget. (defface custom-face-tag - `((t (:weight bold :height 1.2 :inherit variable-pitch))) + `((t :inherit custom-variable-tag)) "Face used for face tags." :group 'custom-faces) ;; backward-compatibility alias |