comparison etc/NEWS @ 27266:8ce11c7a7fcb

read-mail-command, outline mode changes, change-log-merge, add-change-log-entry change, paragraph-indent-minor-mode, keyword-p.
author Dave Love <fx@gnu.org>
date Mon, 10 Jan 2000 16:36:08 +0000
parents 37827755f5d3
children 61772f3ab92f
comparison
equal deleted inserted replaced
27265:bf497204328f 27266:8ce11c7a7fcb
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 ** New user option `read-mail-command' specifies a command to use to
17 read mail from the menu etc.
18
19 ** Changes in Outline mode.
20
21 There is now support for Imenu to index headings. A new command
22 `outline-headers-as-kill' copies the visible headings in the region to
23 the kill ring, e.g. to produce a table of contents.
15 24
16 ** New command M-x check-parens can be used to find unbalanced paren 25 ** New command M-x check-parens can be used to find unbalanced paren
17 groups and strings in buffers in Lisp mode (or other modes). 26 groups and strings in buffers in Lisp mode (or other modes).
18 27
19 ** You can now easily create new *Info* buffers using either M-x clone-buffer 28 ** You can now easily create new *Info* buffers using either M-x clone-buffer
223 - Mouse-2 on the buffer-name switches to the next buffer, and 232 - Mouse-2 on the buffer-name switches to the next buffer, and
224 M-mouse-2 switches to the previous buffer in the buffer list. 233 M-mouse-2 switches to the previous buffer in the buffer list.
225 234
226 - Mouse-3 on the buffer-name displays a buffer menu. 235 - Mouse-3 on the buffer-name displays a buffer menu.
227 236
228 - Mouse-1 on the read-only status in the mode line (`%' or `*') 237 - Mouse-2 on the read-only status in the mode line (`%' or `*')
229 toggles the read-only status. 238 toggles the read-only status.
230 239
231 - Mouse-3 on the mode name display a minor-mode menu. 240 - Mouse-3 on the mode name display a minor-mode menu.
232 241
233 ** LessTif/Motif file selection dialog. 242 ** LessTif/Motif file selection dialog.
344 353
345 (add-hook 'hs-minor-mode-hook 354 (add-hook 'hs-minor-mode-hook
346 (lambda () 355 (lambda ()
347 (add-to-list 'mode-line-format 'hs-headline))) 356 (add-to-list 'mode-line-format 'hs-headline)))
348 357
349 ** Changes to Change Log mode 358 ** Changes to Change Log mode and Add-Log functions
359
360 If you invoke `add-change-log-entry' from a backup file, it makes an
361 entry appropriate for the file's parent. This is useful for making
362 log entries by comparing a version with deleted functions.
363
364 New command M-x change-log-merge merges another log into the current
365 buffer, fixing old-style date formats if necessary.
350 366
351 Change Log mode now adds a file's version number to change log entries 367 Change Log mode now adds a file's version number to change log entries
352 if user-option `change-log-version-info-enabled' is non-nil. 368 if user-option `change-log-version-info-enabled' is non-nil.
353 369
354 The search for a file's version number is performed based on regular 370 The search for a file's version number is performed based on regular
743 759
744 ** A new command `view-emacs-problems' (C-h P) displays the PROBLEMS file. 760 ** A new command `view-emacs-problems' (C-h P) displays the PROBLEMS file.
745 761
746 ** New modes and packages 762 ** New modes and packages
747 763
764 *** `paragraph-indent-minor-mode' is a new minor mode supporting
765 paragraphs in the same style as `paragraph-indent-text-mode'.
766
748 *** bs.el is a new package for buffer selection similar to 767 *** bs.el is a new package for buffer selection similar to
749 list-buffers or electric-buffer-list. Use M-x bs-show to display a 768 list-buffers or electric-buffer-list. Use M-x bs-show to display a
750 buffer menu with this package. You can use M-x bs-customize to 769 buffer menu with this package. You can use M-x bs-customize to
751 customize the package. 770 customize the package.
752 771
867 886
868 Note that +++ before an item means the Lisp manual has been updated. 887 Note that +++ before an item means the Lisp manual has been updated.
869 --- means that I have decided it does not need to be in the Lisp manual. 888 --- means that I have decided it does not need to be in the Lisp manual.
870 When you add a new item, please add it without either +++ or --- 889 When you add a new item, please add it without either +++ or ---
871 so I will know I still need to look at it -- rms. 890 so I will know I still need to look at it -- rms.
891
892 ** New function `keyword-p' is an efficient type predicate for keyword
893 symbols.
872 894
873 ** Variables `beginning-of-defun' and `end-of-defun', can be used to 895 ** Variables `beginning-of-defun' and `end-of-defun', can be used to
874 define handlers for the functions of the same names. Major modes can 896 define handlers for the functions of the same names. Major modes can
875 define these locally instead of rebinding M-C-a etc. if the normal 897 define these locally instead of rebinding M-C-a etc. if the normal
876 definitions of the functions are not appropriate for the mode. 898 definitions of the functions are not appropriate for the mode.