diff options
| author | Kim F. Storm | 2002-04-21 17:15:46 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2002-04-21 17:15:46 +0000 |
| commit | d278091be940a95aeaa6f9953d9e37543dcfe763 (patch) | |
| tree | d05fa9fb446c14d701764a39c60f31225a7e4cd0 | |
| parent | 3b8690f6157419fbe33113ec50356249a01f3b77 (diff) | |
| download | emacs-d278091be940a95aeaa6f9953d9e37543dcfe763.tar.gz emacs-d278091be940a95aeaa6f9953d9e37543dcfe763.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 13 | ||||
| -rw-r--r-- | lisp/ChangeLog | 5 |
2 files changed, 15 insertions, 3 deletions
| @@ -12,7 +12,7 @@ When you add a new item, please add it without either +++ or --- | |||
| 12 | so we will look at it | 12 | so we will look at it |
| 13 | 13 | ||
| 14 | 14 | ||
| 15 | * Installation Changes in Emacs 21.3 | 15 | * Installation Changes in Emacs 21.4 |
| 16 | 16 | ||
| 17 | ** Emacs can now be built without sound support. | 17 | ** Emacs can now be built without sound support. |
| 18 | 18 | ||
| @@ -35,7 +35,7 @@ Emacs with Leim. | |||
| 35 | ** Support for BSD/OS 5.0 was added. | 35 | ** Support for BSD/OS 5.0 was added. |
| 36 | 36 | ||
| 37 | 37 | ||
| 38 | * Changes in Emacs 21.3 | 38 | * Changes in Emacs 21.4 |
| 39 | 39 | ||
| 40 | ** Limited support for charset unification has been added. | 40 | ** Limited support for charset unification has been added. |
| 41 | By default, Emacs now knows how to translate latin-N chars between their | 41 | By default, Emacs now knows how to translate latin-N chars between their |
| @@ -660,7 +660,7 @@ to use standout mode, however they will not be able to display | |||
| 660 | mode-lines in inverse-video. | 660 | mode-lines in inverse-video. |
| 661 | 661 | ||
| 662 | 662 | ||
| 663 | * Lisp Changes in Emacs 21.3 | 663 | * Lisp Changes in Emacs 21.4 |
| 664 | 664 | ||
| 665 | ** The `defmacro' form may contain declarations specifying how to | 665 | ** The `defmacro' form may contain declarations specifying how to |
| 666 | indent the macro in Lisp mode and how to debug it with Edebug. The | 666 | indent the macro in Lisp mode and how to debug it with Edebug. The |
| @@ -797,6 +797,13 @@ The new function `remove-list-of-text-properties' is almost the same | |||
| 797 | as `remove-text-properties'. The only difference is that it takes | 797 | as `remove-text-properties'. The only difference is that it takes |
| 798 | a list of property names as argument rather than a property list. | 798 | a list of property names as argument rather than a property list. |
| 799 | 799 | ||
| 800 | ** New functions insert-for-yank and insert-buffer-substring-as-yank. | ||
| 801 | |||
| 802 | These functions work like `insert' and `insert-buffer-substring', but | ||
| 803 | removes the text properties in the `yank-excluded-properties' list. | ||
| 804 | |||
| 805 | ** New function insert-buffer-substring-no-properties. | ||
| 806 | |||
| 800 | ** Enhanced networking support. | 807 | ** Enhanced networking support. |
| 801 | 808 | ||
| 802 | *** There is a new `make-network-process' function which supports | 809 | *** There is a new `make-network-process' function which supports |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1b18a66306e..b373e588a66 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2002-04-21 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * subr.el (insert-buffer-substring-no-properties): New function. | ||
| 4 | (insert-buffer-substring-as-yank): New function. | ||
| 5 | |||
| 1 | 2002-04-19 Stefan Monnier <monnier@cs.yale.edu> | 6 | 2002-04-19 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 7 | ||
| 3 | * files.el (file-name-non-special): Don't mangle the 0'th arg and the | 8 | * files.el (file-name-non-special): Don't mangle the 0'th arg and the |