aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/cus-edit.el8
2 files changed, 10 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 029d7375580..5423f02046f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12008-11-06 Glenn Morris <rgm@gnu.org>
2
3 * cus-edit.el (custom-comment-tag): Doc fix.
4 (custom-comment, custom-variable-value-create, custom-face):
5 Use face names sans -face suffix rather than aliases.
6
12008-11-05 Jay Belanger <jay.p.belanger@gmail.com> 72008-11-05 Jay Belanger <jay.p.belanger@gmail.com>
2 8
3 * calc/calc.el (calc-quit): Use `window-full-width-p' to check 9 * calc/calc.el (calc-quit): Use `window-full-width-p' to check
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index fb067451661..40d1e2ffdfb 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -2544,7 +2544,7 @@ try matching its doc string against `custom-guess-doc-alist'."
2544 (push (widget-create-child-and-convert 2544 (push (widget-create-child-and-convert
2545 widget 'item 2545 widget 'item
2546 :format "%{%t%}: " 2546 :format "%{%t%}: "
2547 :sample-face 'custom-variable-tag-face 2547 :sample-face 'custom-variable-tag
2548 :tag tag 2548 :tag tag
2549 :parent widget) 2549 :parent widget)
2550 buttons) 2550 buttons)
@@ -2597,8 +2597,8 @@ try matching its doc string against `custom-guess-doc-alist'."
2597 :action 'custom-tag-action 2597 :action 'custom-tag-action
2598 :help-echo "Change value of this option." 2598 :help-echo "Change value of this option."
2599 :mouse-down-action 'custom-tag-mouse-down-action 2599 :mouse-down-action 'custom-tag-mouse-down-action
2600 :button-face 'custom-variable-button-face 2600 :button-face 'custom-variable-button
2601 :sample-face 'custom-variable-tag-face 2601 :sample-face 'custom-variable-tag
2602 tag) 2602 tag)
2603 buttons) 2603 buttons)
2604 (insert " ") 2604 (insert " ")
@@ -3226,7 +3226,7 @@ Only match frames that support the specified face attributes.")
3226 3226
3227(define-widget 'custom-face 'custom 3227(define-widget 'custom-face 'custom
3228 "Customize face." 3228 "Customize face."
3229 :sample-face 'custom-face-tag-face 3229 :sample-face 'custom-face-tag
3230 :help-echo "Set or reset this face." 3230 :help-echo "Set or reset this face."
3231 :documentation-property #'face-doc-string 3231 :documentation-property #'face-doc-string
3232 :value-create 'custom-face-value-create 3232 :value-create 'custom-face-value-create