diff options
| author | Richard M. Stallman | 2002-04-19 00:29:46 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-04-19 00:29:46 +0000 |
| commit | d9f7eb77e162f56e591ff614013be1508851c810 (patch) | |
| tree | 2c48feefbf3937c814d8654558e3698d96b432f5 | |
| parent | dac7616d0bbf526d82789ba471abe0c2d27cc2ec (diff) | |
| download | emacs-d9f7eb77e162f56e591ff614013be1508851c810.tar.gz emacs-d9f7eb77e162f56e591ff614013be1508851c810.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 11 | ||||
| -rw-r--r-- | lisp/ChangeLog | 12 |
2 files changed, 23 insertions, 0 deletions
| @@ -260,6 +260,11 @@ making the decision in a heuristic way. This new job is done by the | |||
| 260 | command `isearch-yank-word-or-char'. To restore the old behavior, | 260 | command `isearch-yank-word-or-char'. To restore the old behavior, |
| 261 | bind C-w to `isearch-yank-word' in `isearch-mode-map'. | 261 | bind C-w to `isearch-yank-word' in `isearch-mode-map'. |
| 262 | 262 | ||
| 263 | ** Yanking text now discards certain text properties that can | ||
| 264 | be inconvenient when you did not expect them. The variable | ||
| 265 | `yank-excluded-properties' specifies which ones. Insertion | ||
| 266 | of register contents and rectangles also discards these properties. | ||
| 267 | |||
| 263 | ** M-x grep now tries to avoid appending `/dev/null' to the command line | 268 | ** M-x grep now tries to avoid appending `/dev/null' to the command line |
| 264 | by using GNU grep `-H' option instead. M-x grep will automatically | 269 | by using GNU grep `-H' option instead. M-x grep will automatically |
| 265 | detect whether this is possible or not the first time it is invoked. | 270 | detect whether this is possible or not the first time it is invoked. |
| @@ -776,6 +781,12 @@ will lead to undesirable results, so don't let it happen; the first | |||
| 776 | change group you start for any given buffer should be the last one | 781 | change group you start for any given buffer should be the last one |
| 777 | finished. | 782 | finished. |
| 778 | 783 | ||
| 784 | ** New function remove-list-of-text-properties. | ||
| 785 | |||
| 786 | The new function `remove-list-of-text-properties' is almost the same | ||
| 787 | as `remove-text-properties'. The only difference is that it takes | ||
| 788 | a list of property names as argument rather than a property list. | ||
| 789 | |||
| 779 | ** Enhanced networking support. | 790 | ** Enhanced networking support. |
| 780 | 791 | ||
| 781 | *** There is a new `make-network-process' function which supports | 792 | *** There is a new `make-network-process' function which supports |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0f2530c5cea..c4463d4ac7d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2002-04-18 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * toolbar/tool-bar.el (tool-bar-local-item-from-menu): | ||
| 4 | Fix parts in construction of `menu-item' item at end. | ||
| 5 | |||
| 6 | * mail/mailabbrev.el (mail-mode-abbrev-table): Delete defvar. | ||
| 7 | |||
| 8 | * subr.el (insert-for-yank): New function. | ||
| 9 | |||
| 10 | * simple.el (yank-excluded-properties): New user option. | ||
| 11 | (yank-pop, yank): Use insert-for-yank. | ||
| 12 | |||
| 1 | 2002-04-19 Kim F. Storm <storm@cua.dk> | 13 | 2002-04-19 Kim F. Storm <storm@cua.dk> |
| 2 | 14 | ||
| 3 | * simple.el (pop-to-mark-command): Do not set this-command. | 15 | * simple.el (pop-to-mark-command): Do not set this-command. |