diff options
| author | Dave Love | 2000-01-10 16:36:08 +0000 |
|---|---|---|
| committer | Dave Love | 2000-01-10 16:36:08 +0000 |
| commit | 559cee90ab2aad79e004fee50ab70df73bd654dc (patch) | |
| tree | 368b56dd8abeb437638637854cc2bbb64929d385 | |
| parent | 8cf87e9bd2b10557771dafa777adabba08aa9577 (diff) | |
| download | emacs-559cee90ab2aad79e004fee50ab70df73bd654dc.tar.gz emacs-559cee90ab2aad79e004fee50ab70df73bd654dc.zip | |
read-mail-command, outline mode changes, change-log-merge,
add-change-log-entry change, paragraph-indent-minor-mode, keyword-p.
| -rw-r--r-- | etc/NEWS | 26 |
1 files changed, 24 insertions, 2 deletions
| @@ -13,6 +13,15 @@ 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 | ** 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. | ||
| 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 | ||
| @@ -225,7 +234,7 @@ 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. |
| @@ -346,7 +355,14 @@ something like this in your .emacs. | |||
| 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. |
| @@ -745,6 +761,9 @@ appropriate for C-style escape sequences in strings. | |||
| 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 |
| @@ -870,6 +889,9 @@ Note that +++ before an item means the Lisp manual has been updated. | |||
| 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. |
| 872 | 891 | ||
| 892 | ** New function `keyword-p' is an efficient type predicate for keyword | ||
| 893 | symbols. | ||
| 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 |