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
07f904a3
Commit
07f904a3
authored
Oct 12, 2001
by
Miles Bader
Browse files
(help-customize-face): New button-type.
parent
8940232b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
lisp/ChangeLog
lisp/ChangeLog
+10
-1
lisp/help-mode.el
lisp/help-mode.el
+8
-0
No files found.
lisp/ChangeLog
View file @
07f904a3
2001-10-12 Miles Bader <miles@gnu.org>
* help-mode.el (help-customize-face): New button-type.
* faces.el (list-faces-display): Fix args to `help-xref-button'.
(describe-face): Fix args to `help-xref-button'.
Don't switch to help-buffer around call to `help-setup-xref'.
Use `help-buffer' instead of hard-wired "*Help*".
Require `help-mode'.
2001-10-11 Stefan Monnier <monnier@cs.yale.edu>
* net/goto-addr.el (goto-address-mail-regexp): Allow + in username.
...
...
@@ -26,7 +35,7 @@
(describe-bindings): Call help-setup-xref earlier.
(describe-key): Call help-setup-xref. Fix call to describe-function-1.
(describe-mode): Don't autoload. Call help-setup-xref earlier.
2001-10-11 Gerd Moellmann <gerd@gnu.org>
* master.el (master-mode): Use define-minor-mode instead of
...
...
lisp/help-mode.el
View file @
07f904a3
...
...
@@ -97,6 +97,14 @@ The format is (FUNCTION ARGS...).")
'help-echo
(
purecopy
"mouse-2, RET: customize variable"
)
'action
#'
help-button-action
)
(
define-button-type
'help-customize-face
'help-function
(
lambda
(
v
)
(
if
help-xref-stack
(
pop
help-xref-stack
))
(
customize-face
v
))
'help-echo
(
purecopy
"mouse-2, RET: customize face"
)
'action
#'
help-button-action
)
(
define-button-type
'help-function-def
'help-function
(
lambda
(
fun
file
)
(
require
'find-func
)
...
...
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