aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann1999-12-06 13:09:10 +0000
committerGerd Moellmann1999-12-06 13:09:10 +0000
commit41074bb37aef06844b2b187b8deae1ef7bd35351 (patch)
treef92d0f977c34e1115c5c005ef4b024dbcb1c25db
parentb3e5232e688ad7bcc6c7a38c1aa25bb71b6a47bb (diff)
downloademacs-41074bb37aef06844b2b187b8deae1ef7bd35351.tar.gz
emacs-41074bb37aef06844b2b187b8deae1ef7bd35351.zip
Changes to etags.el.
-rw-r--r--etc/NEWS27
1 files changed, 27 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index e2ac49bad0f..8b5e1d1b21e 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -13,6 +13,33 @@ the --without-pop configure option, should that be necessary.
13 13
14* Changes in Emacs 21.1 14* Changes in Emacs 21.1
15 15
16** Changes to etags.el
17
18*** You can display additional output with M-x tags-apropos by setting
19the new variable tags-apropos-additional-actions.
20
21If non-nil, the variable's value should be a list of triples (TITLE
22FUNCTION TO-SEARCH). For each triple, M-x tags-apropos processes
23TO-SEARCH and lists tags from it. TO-SEARCH should be an alist,
24obarray, or symbol. If it is a symbol, the symbol's value is used.
25
26TITLE is a string to use to label the list of tags from TO-SEARCH.
27
28FUNCTION is a function to call when an entry is selected in the Tags
29List buffer. It is called with one argument, the selected symbol.
30
31A useful example value for this variable might be something like:
32
33 '(("Emacs Lisp" Info-goto-emacs-command-node obarray)
34 ("Common Lisp" common-lisp-hyperspec common-lisp-hyperspec-obarray)
35 ("SCWM" scwm-documentation scwm-obarray))
36
37*** The face tags-tag-face can be used to customize the appearance
38of tags in the output of M-x tags-apropos.
39
40*** Setting tags-apropos-verbose to a non-nil value displays the
41names of tags files in the *Tags List* buffer.
42
16** Emacs can now support 'wheeled' mice (such as the MS IntelliMouse) 43** Emacs can now support 'wheeled' mice (such as the MS IntelliMouse)
17under XFree86. To enable this, simply put (mwheel-install) in your 44under XFree86. To enable this, simply put (mwheel-install) in your
18.emacs file. 45.emacs file.