aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2006-01-13 19:50:10 +0000
committerEli Zaretskii2006-01-13 19:50:10 +0000
commit83dc149dec82db59100204c37138dc2fab916327 (patch)
tree6b3144c8b0ac503a8a32c314f184107a598cb442
parent4c3447538fa68b6c125449d73953e92de8805b59 (diff)
downloademacs-83dc149dec82db59100204c37138dc2fab916327.tar.gz
emacs-83dc149dec82db59100204c37138dc2fab916327.zip
(custom-add-see-also, custom-add-parent-links): Make sure the links use
the `custom-link' face.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/cus-edit.el10
2 files changed, 13 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index fcb4fac5cc9..00eace0e644 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12006-01-13 Martin Rudalics <rudalics@gmx.at> (tiny change)
2
3 * cus-edit.el (custom-add-see-also, custom-add-parent-links): Make
4 sure the links use the `custom-link' face.
5
12006-01-13 Stefan Monnier <monnier@iro.umontreal.ca> 62006-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
2 7
3 * progmodes/ld-script.el (auto-mode-alist): Use \' rather than $. 8 * progmodes/ld-script.el (auto-mode-alist): Use \' rather than $.
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index 2d4603d6dd1..7b0563448a6 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -2201,7 +2201,10 @@ Insert PREFIX first if non-nil."
2201 (insert prefix)) 2201 (insert prefix))
2202 (insert "See also ") 2202 (insert "See also ")
2203 (while links 2203 (while links
2204 (push (widget-create-child-and-convert widget (car links)) 2204 (push (widget-create-child-and-convert
2205 widget (car links)
2206 :button-face 'custom-link
2207 :mouse-face 'highlight)
2205 buttons) 2208 buttons)
2206 (setq links (cdr links)) 2209 (setq links (cdr links))
2207 (cond ((null links) 2210 (cond ((null links)
@@ -2246,7 +2249,10 @@ If INITIAL-STRING is non-nil, use that rather than \"Parent groups:\"."
2246 (when links 2249 (when links
2247 (insert "\nParent documentation: ") 2250 (insert "\nParent documentation: ")
2248 (while links 2251 (while links
2249 (push (widget-create-child-and-convert widget (car links)) 2252 (push (widget-create-child-and-convert
2253 widget (car links)
2254 :button-face 'custom-link
2255 :mouse-face 'highlight)
2250 buttons) 2256 buttons)
2251 (setq links (cdr links)) 2257 (setq links (cdr links))
2252 (cond ((null links) 2258 (cond ((null links)