Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
83dc149d
Commit
83dc149d
authored
Jan 13, 2006
by
Eli Zaretskii
Browse files
(custom-add-see-also, custom-add-parent-links): Make sure the links use
the `custom-link' face.
parent
4c344753
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/cus-edit.el
lisp/cus-edit.el
+8
-2
No files found.
lisp/ChangeLog
View file @
83dc149d
2006-01-13 Martin Rudalics <rudalics@gmx.at> (tiny change)
* cus-edit.el (custom-add-see-also, custom-add-parent-links): Make
sure the links use the `custom-link' face.
2006-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
* progmodes/ld-script.el (auto-mode-alist): Use \' rather than $.
...
...
lisp/cus-edit.el
View file @
83dc149d
...
...
@@ -2201,7 +2201,10 @@ Insert PREFIX first if non-nil."
(insert prefix))
(insert "
See
also
")
(while links
(push (widget-create-child-and-convert widget (car links))
(push (widget-create-child-and-convert
widget (car links)
:button-face 'custom-link
:mouse-face 'highlight)
buttons)
(setq links (cdr links))
(cond ((null links)
...
...
@@ -2246,7 +2249,10 @@ If INITIAL-STRING is non-nil, use that rather than \"Parent groups:\"."
(when links
(insert "
\nParent
documentation:
")
(while links
(push (widget-create-child-and-convert widget (car links))
(push (widget-create-child-and-convert
widget (car links)
:button-face 'custom-link
:mouse-face 'highlight)
buttons)
(setq links (cdr links))
(cond ((null links)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment