diff options
| author | Leo Liu | 2013-10-07 11:34:26 +0800 |
|---|---|---|
| committer | Leo Liu | 2013-10-07 11:34:26 +0800 |
| commit | c8af480df782d6ff2d99f34a1672b8640dfb673f (patch) | |
| tree | 8a9602e146f54631c100a06e0e3a9265e5e31ac9 | |
| parent | 85698d63495d7bb22997eedbb74cef7f20d18ffd (diff) | |
| download | emacs-c8af480df782d6ff2d99f34a1672b8640dfb673f.tar.gz emacs-c8af480df782d6ff2d99f34a1672b8640dfb673f.zip | |
* etc/NEWS: Mention new feature of register commands.
| -rw-r--r-- | etc/ChangeLog | 4 | ||||
| -rw-r--r-- | etc/NEWS | 2 | ||||
| -rw-r--r-- | lisp/register.el | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index 49765c5c873..bb601d1e8ac 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-10-07 Leo Liu <sdl.web@gmail.com> | ||
| 2 | |||
| 3 | * NEWS: Mention new feature of register commands. | ||
| 4 | |||
| 1 | 2013-10-02 Fabrice Niessen <fni@missioncriticalit.com> | 5 | 2013-10-02 Fabrice Niessen <fni@missioncriticalit.com> |
| 2 | 6 | ||
| 3 | * themes/leuven-theme.el: Add Commentary and some headers, update | 7 | * themes/leuven-theme.el: Add Commentary and some headers, update |
| @@ -181,6 +181,8 @@ visual order of characters on the screen: <left> always moves to the | |||
| 181 | left, <right> always moves to the right, disregarding the surrounding | 181 | left, <right> always moves to the right, disregarding the surrounding |
| 182 | bidirectional context. | 182 | bidirectional context. |
| 183 | 183 | ||
| 184 | ** All register commands can now show help with preview. | ||
| 185 | |||
| 184 | ** New command `kmacro-to-register' to store keyboard macros in registers. | 186 | ** New command `kmacro-to-register' to store keyboard macros in registers. |
| 185 | 187 | ||
| 186 | ** Shell Script mode | 188 | ** Shell Script mode |
diff --git a/lisp/register.el b/lisp/register.el index a44218fa135..88b309b2d89 100644 --- a/lisp/register.el +++ b/lisp/register.el | |||
| @@ -123,8 +123,6 @@ See the documentation of the variable `register-alist' for possible VALUEs." | |||
| 123 | If SHOW-EMPTY is non-nil show the window even if no registers." | 123 | If SHOW-EMPTY is non-nil show the window even if no registers." |
| 124 | (when (or show-empty (consp register-alist)) | 124 | (when (or show-empty (consp register-alist)) |
| 125 | (let ((split-height-threshold 0)) | 125 | (let ((split-height-threshold 0)) |
| 126 | ;; XXX: why with-temp-buffer-window always pops up the temp | ||
| 127 | ;; window even if one already shown? | ||
| 128 | (with-temp-buffer-window | 126 | (with-temp-buffer-window |
| 129 | buffer | 127 | buffer |
| 130 | (cons 'display-buffer-below-selected | 128 | (cons 'display-buffer-below-selected |