comparison etc/NEWS @ 26728:8a531f428463

Etags.el change moved. Add dired-aux change.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 06 Dec 1999 16:46:41 +0000
parents 866ff79482ce
children 0aad3e0b47d2
comparison
equal deleted inserted replaced
26727:5fbb18ca751a 26728:8a531f428463
10 10
11 ** `movemail' defaults to supporting POP. You can turn this off using 11 ** `movemail' defaults to supporting POP. You can turn this off using
12 the --without-pop configure option, should that be necessary. 12 the --without-pop configure option, should that be necessary.
13 13
14 * Changes in Emacs 21.1 14 * Changes in Emacs 21.1
15
16 ** Changes to etags.el
17
18 *** You can display additional output with M-x tags-apropos by setting
19 the new variable tags-apropos-additional-actions.
20
21 If non-nil, the variable's value should be a list of triples (TITLE
22 FUNCTION TO-SEARCH). For each triple, M-x tags-apropos processes
23 TO-SEARCH and lists tags from it. TO-SEARCH should be an alist,
24 obarray, or symbol. If it is a symbol, the symbol's value is used.
25
26 TITLE is a string to use to label the list of tags from TO-SEARCH.
27
28 FUNCTION is a function to call when an entry is selected in the Tags
29 List buffer. It is called with one argument, the selected symbol.
30
31 A 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
38 of tags in the output of M-x tags-apropos.
39
40 *** Setting tags-apropos-verbose to a non-nil value displays the
41 names of tags files in the *Tags List* buffer.
42 15
43 ** Emacs can now support 'wheeled' mice (such as the MS IntelliMouse) 16 ** Emacs can now support 'wheeled' mice (such as the MS IntelliMouse)
44 under XFree86. To enable this, simply put (mwheel-install) in your 17 under XFree86. To enable this, simply put (mwheel-install) in your
45 .emacs file. 18 .emacs file.
46 19
428 401
429 *** New variable `dired-recursive-copies' determines if the copy 402 *** New variable `dired-recursive-copies' determines if the copy
430 command will copy directories recursively. The default is, do not 403 command will copy directories recursively. The default is, do not
431 copy directories recursively. 404 copy directories recursively.
432 405
406 *** In command `dired-do-shell-command' (usually bound to `!') a `?'
407 in the shell command has a special meaning similar to `*', but with
408 the 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
434 use the -f option when sending mail. 411 use the -f option when sending mail.
435 412
436 ** Isearch changes 413 ** Isearch changes
437 414
500 477
501 *** New language Python: def and class at the beginning of a line are tags. 478 *** New language Python: def and class at the beginning of a line are tags.
502 479
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
504 for PSWrap. 481 for PSWrap.
482
483 ** Changes in etags.el
484
485 *** You can display additional output with M-x tags-apropos by setting
486 the new variable tags-apropos-additional-actions.
487
488 If non-nil, the variable's value should be a list of triples (TITLE
489 FUNCTION TO-SEARCH). For each triple, M-x tags-apropos processes
490 TO-SEARCH and lists tags from it. TO-SEARCH should be an alist,
491 obarray, or symbol. If it is a symbol, the symbol's value is used.
492
493 TITLE is a string to use to label the list of tags from TO-SEARCH.
494
495 FUNCTION is a function to call when an entry is selected in the Tags
496 List buffer. It is called with one argument, the selected symbol.
497
498 A 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
505 of tags in the output of M-x tags-apropos.
506
507 *** Setting tags-apropos-verbose to a non-nil value displays the
508 names of tags files in the *Tags List* buffer.
505 509
506 ** Emacs now attempts to determine the initial language environment 510 ** Emacs now attempts to determine the initial language environment
507 and preferred and locale coding systems systematically from the 511 and preferred and locale coding systems systematically from the
508 LC_ALL, LC_CTYPE, and LANG environment variables during startup. 512 LC_ALL, LC_CTYPE, and LANG environment variables during startup.
509 513