aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann1999-12-06 16:46:41 +0000
committerGerd Moellmann1999-12-06 16:46:41 +0000
commitf6737cde3e786b0e8acea4b613aa42cf49fa204c (patch)
tree945faf947cc8d6965ca2e25d984f611a7f7cfb9b
parentd984dbc116c66860123a7d431213a80998d3ca6e (diff)
downloademacs-f6737cde3e786b0e8acea4b613aa42cf49fa204c.tar.gz
emacs-f6737cde3e786b0e8acea4b613aa42cf49fa204c.zip
Etags.el change moved. Add dired-aux change.
-rw-r--r--etc/NEWS58
1 files changed, 31 insertions, 27 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 8b5e1d1b21e..8a1714d61d7 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -13,33 +13,6 @@ 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
43** Emacs can now support 'wheeled' mice (such as the MS IntelliMouse) 16** Emacs can now support 'wheeled' mice (such as the MS IntelliMouse)
44under XFree86. To enable this, simply put (mwheel-install) in your 17under XFree86. To enable this, simply put (mwheel-install) in your
45.emacs file. 18.emacs file.
@@ -430,6 +403,10 @@ is, delete only empty directories.
430command will copy directories recursively. The default is, do not 403command will copy directories recursively. The default is, do not
431copy directories recursively. 404copy directories recursively.
432 405
406*** In command `dired-do-shell-command' (usually bound to `!') a `?'
407in the shell command has a special meaning similar to `*', but with
408the difference that the command will be run on each file individually.
409
433** The variable mail-specify-envelope-from controls whether to 410** The variable mail-specify-envelope-from controls whether to
434use the -f option when sending mail. 411use the -f option when sending mail.
435 412
@@ -503,6 +480,33 @@ variables are tagged.
503*** .ss files are Scheme files, .pdb is Postscript with C syntax, .psw is 480*** .ss files are Scheme files, .pdb is Postscript with C syntax, .psw is
504for PSWrap. 481for PSWrap.
505 482
483** Changes in etags.el
484
485*** You can display additional output with M-x tags-apropos by setting
486the new variable tags-apropos-additional-actions.
487
488If non-nil, the variable's value should be a list of triples (TITLE
489FUNCTION TO-SEARCH). For each triple, M-x tags-apropos processes
490TO-SEARCH and lists tags from it. TO-SEARCH should be an alist,
491obarray, or symbol. If it is a symbol, the symbol's value is used.
492
493TITLE is a string to use to label the list of tags from TO-SEARCH.
494
495FUNCTION is a function to call when an entry is selected in the Tags
496List buffer. It is called with one argument, the selected symbol.
497
498A useful example value for this variable might be something like:
499
500 '(("Emacs Lisp" Info-goto-emacs-command-node obarray)
501 ("Common Lisp" common-lisp-hyperspec common-lisp-hyperspec-obarray)
502 ("SCWM" scwm-documentation scwm-obarray))
503
504*** The face tags-tag-face can be used to customize the appearance
505of tags in the output of M-x tags-apropos.
506
507*** Setting tags-apropos-verbose to a non-nil value displays the
508names of tags files in the *Tags List* buffer.
509
506** Emacs now attempts to determine the initial language environment 510** Emacs now attempts to determine the initial language environment
507and preferred and locale coding systems systematically from the 511and preferred and locale coding systems systematically from the
508LC_ALL, LC_CTYPE, and LANG environment variables during startup. 512LC_ALL, LC_CTYPE, and LANG environment variables during startup.