aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeo Liu2013-10-07 11:34:26 +0800
committerLeo Liu2013-10-07 11:34:26 +0800
commitc8af480df782d6ff2d99f34a1672b8640dfb673f (patch)
tree8a9602e146f54631c100a06e0e3a9265e5e31ac9
parent85698d63495d7bb22997eedbb74cef7f20d18ffd (diff)
downloademacs-c8af480df782d6ff2d99f34a1672b8640dfb673f.tar.gz
emacs-c8af480df782d6ff2d99f34a1672b8640dfb673f.zip
* etc/NEWS: Mention new feature of register commands.
-rw-r--r--etc/ChangeLog4
-rw-r--r--etc/NEWS2
-rw-r--r--lisp/register.el2
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 @@
12013-10-07 Leo Liu <sdl.web@gmail.com>
2
3 * NEWS: Mention new feature of register commands.
4
12013-10-02 Fabrice Niessen <fni@missioncriticalit.com> 52013-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
diff --git a/etc/NEWS b/etc/NEWS
index 4539f5f00d1..560c54c0f83 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -181,6 +181,8 @@ visual order of characters on the screen: <left> always moves to the
181left, <right> always moves to the right, disregarding the surrounding 181left, <right> always moves to the right, disregarding the surrounding
182bidirectional context. 182bidirectional 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."
123If SHOW-EMPTY is non-nil show the window even if no registers." 123If 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