aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader2001-10-07 12:07:34 +0000
committerMiles Bader2001-10-07 12:07:34 +0000
commitd876f455d1080aac92467b7328c71a7e08adccd8 (patch)
treeb7cc77254717a57a6ec2b786f72006c7ba69e8d0
parent0cf0d8284d2ee2e3db936598ed1407c7c2d01eb5 (diff)
downloademacs-d876f455d1080aac92467b7328c71a7e08adccd8.tar.gz
emacs-d876f455d1080aac92467b7328c71a7e08adccd8.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog38
-rw-r--r--src/ChangeLog4
2 files changed, 42 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 508e60f2201..4078c064306 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,43 @@
12001-10-07 Miles Bader <miles@gnu.org> 12001-10-07 Miles Bader <miles@gnu.org>
2 2
3 * loadup.el ("faces"): Move load before loading "loaddefs.el".
4 ("button"): New load, just before "help" (which uses it).
5
6 * help.el (help-mode-map): Make button-buffer-map our parent.
7 Don't bind mouse events or tab/backtab.
8 (help-function, help-variable, help-face, help-coding-system)
9 (help-input-method, help-character-set, help-back, help-info)
10 (help-customize-variable, help-function-def, help-variable-def):
11 New button types.
12 (help-button-action): New function.
13 (describe-function-1): Pass help button-types to
14 `help-xref-button' rather than help function and help-echo string.
15 Don't put multiple help-function args in a list to pass them to
16 help-xref-button, just pass them as multiple arguments.
17 Use `help-insert-xref-button' to make [back]-button, rather than
18 `help-xref-button'.
19 (help-xref-button): Take a button-type TYPE as a parameter rather
20 than a function. Remove HELP-ECHO parameter. Remove DATA parameter
21 and add a &rest parameter ARGS to serve the same purpose.
22 Use `make-text-button' to add the button.
23 (help-insert-xref-button): Use `insert-text-button' to add the button.
24 (help-follow-mouse, help-next-ref, help-previous-ref):
25 Functions removed.
26 (help-do-xref): New function.
27 (help-follow): Use `push-button' and `help-do-xref' to do most of
28 the work.
29
30 * apropos.el (apropos-symbol, apropos-label): New button types.
31 (apropos-symbol-button-display-help)
32 (apropos-label-button-display-help, apropos-next-label-button):
33 New functions.
34 (apropos-mode-map): Make button-buffer-map our parent.
35 Don't bind mouse events.
36 (apropos-print, apropos-print-doc): Create buttons instead of text
37 properties.
38 (apropos-mouse-follow): Function removed.
39 (apropos-follow): Use buttons.
40
3 * button.el: New file. 41 * button.el: New file.
4 42
52001-10-07 Gerd Moellmann <gerd@gnu.org> 432001-10-07 Gerd Moellmann <gerd@gnu.org>
diff --git a/src/ChangeLog b/src/ChangeLog
index d540f05822e..e4f622d7981 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12001-10-07 Miles Bader <miles@gnu.org>
2
3 * Makefile.in (lisp, shortlisp): Add `button.elc'.
4
12001-10-07 Ken Raeburn <raeburn@gnu.org> 52001-10-07 Ken Raeburn <raeburn@gnu.org>
2 6
3 * minibuf.c (Fminibuffer_prompt_end): Don't apply make_number to a 7 * minibuf.c (Fminibuffer_prompt_end): Don't apply make_number to a