diff options
| author | Leo Liu | 2014-10-09 09:52:47 +0800 |
|---|---|---|
| committer | Leo Liu | 2014-10-09 09:52:47 +0800 |
| commit | b4030330c8a8d807065292a05286962ffe3c4d57 (patch) | |
| tree | 96ccf9209512c29a268acf3bafc37d858e0a5bb9 | |
| parent | 2dbd7a37a809e2dcef6c8e7323ac15c98b051cd9 (diff) | |
| download | emacs-b4030330c8a8d807065292a05286962ffe3c4d57.tar.gz emacs-b4030330c8a8d807065292a05286962ffe3c4d57.zip | |
* NEWS: Mention optional arg to terpri and new cl-lib functions.
| -rw-r--r-- | etc/ChangeLog | 4 | ||||
| -rw-r--r-- | etc/NEWS | 11 |
2 files changed, 12 insertions, 3 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index 42d0f5ced2c..88df9c15500 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-10-09 Leo Liu <sdl.web@gmail.com> | ||
| 2 | |||
| 3 | * NEWS: Mention optional arg to terpri and new cl-lib functions. | ||
| 4 | |||
| 1 | 2014-10-05 Jan Djärv <jan.h.d@swipnet.se> | 5 | 2014-10-05 Jan Djärv <jan.h.d@swipnet.se> |
| 2 | 6 | ||
| 3 | * NEWS: Mention ns-use-fullscreen-animation. | 7 | * NEWS: Mention ns-use-fullscreen-animation. |
| @@ -52,6 +52,9 @@ Use './configure PKG_CONFIG=/full/name/of/pkg-config' if you need to. | |||
| 52 | ** x-select-enable-clipboard is renamed gui-select-enable-clipboard. | 52 | ** x-select-enable-clipboard is renamed gui-select-enable-clipboard. |
| 53 | Additionally it now also applies to OSX and GNUstep. | 53 | Additionally it now also applies to OSX and GNUstep. |
| 54 | 54 | ||
| 55 | +++ | ||
| 56 | ** terpri gets an optional arg ENSURE to conditionally output a newline. | ||
| 57 | |||
| 55 | ** `insert-register' now leaves point after the inserted text | 58 | ** `insert-register' now leaves point after the inserted text |
| 56 | when called interactively. A prefix argument toggles this behavior. | 59 | when called interactively. A prefix argument toggles this behavior. |
| 57 | 60 | ||
| @@ -117,6 +120,8 @@ performance improvements when pasting large amounts of text. | |||
| 117 | ** pcase | 120 | ** pcase |
| 118 | *** New UPatterns `quote' and `app'. | 121 | *** New UPatterns `quote' and `app'. |
| 119 | *** New UPatterns can be defined with `pcase-defmacro'. | 122 | *** New UPatterns can be defined with `pcase-defmacro'. |
| 123 | +++ | ||
| 124 | *** New vector QPattern. | ||
| 120 | 125 | ||
| 121 | ** Lisp mode | 126 | ** Lisp mode |
| 122 | *** Strings after `:documentation' are highlighted as docstrings. | 127 | *** Strings after `:documentation' are highlighted as docstrings. |
| @@ -126,15 +131,15 @@ performance improvements when pasting large amounts of text. | |||
| 126 | *** C-x C-x in rectangle-mark-mode now cycles through the four corners. | 131 | *** C-x C-x in rectangle-mark-mode now cycles through the four corners. |
| 127 | *** `string-rectangle' provides on-the-fly preview of the result. | 132 | *** `string-rectangle' provides on-the-fly preview of the result. |
| 128 | 133 | ||
| 129 | +++ | ||
| 130 | ** Macro `pcase' now supports vector qpattern. | ||
| 131 | |||
| 132 | ** New font-lock functions font-lock-ensure and font-lock-flush, which | 134 | ** New font-lock functions font-lock-ensure and font-lock-flush, which |
| 133 | should be used instead of font-lock-fontify-buffer when called from Elisp. | 135 | should be used instead of font-lock-fontify-buffer when called from Elisp. |
| 134 | 136 | ||
| 135 | ** Macro `minibuffer-with-setup-hook' takes (:append FUN) to mean | 137 | ** Macro `minibuffer-with-setup-hook' takes (:append FUN) to mean |
| 136 | appending FUN to `minibuffer-setup-hook'. | 138 | appending FUN to `minibuffer-setup-hook'. |
| 137 | 139 | ||
| 140 | ** cl-lib | ||
| 141 | *** New functions cl-fresh-line, cl-digit-char-p and cl-parse-integer. | ||
| 142 | |||
| 138 | ** Calendar and diary | 143 | ** Calendar and diary |
| 139 | 144 | ||
| 140 | +++ | 145 | +++ |