diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/subr.el | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 67774ed6b70..ee36a71f588 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-12-31 Leo Liu <sdl.web@gmail.com> | ||
| 2 | |||
| 3 | * subr.el (set-temporary-overlay-map): Obsolete alias. (Bug#16305) | ||
| 4 | |||
| 1 | 2013-12-30 Daniel Colascione <dancol@dancol.org> | 5 | 2013-12-30 Daniel Colascione <dancol@dancol.org> |
| 2 | 6 | ||
| 3 | * term/x-win.el ([XF86WakeUp]): Ignore the XF86WakeUp key instead | 7 | * term/x-win.el ([XF86WakeUp]): Ignore the XF86WakeUp key instead |
diff --git a/lisp/subr.el b/lisp/subr.el index ab2023bd544..cf90653d2e1 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -4266,6 +4266,9 @@ use `called-interactively-p'." | |||
| 4266 | (eq 'add-keymap-witness (nth 1 map)) | 4266 | (eq 'add-keymap-witness (nth 1 map)) |
| 4267 | (set symbol tail))))) | 4267 | (set symbol tail))))) |
| 4268 | 4268 | ||
| 4269 | (define-obsolete-function-alias | ||
| 4270 | 'set-temporary-overlay-map 'set-transient-map "24.4") | ||
| 4271 | |||
| 4269 | (defun set-transient-map (map &optional keep-pred on-exit) | 4272 | (defun set-transient-map (map &optional keep-pred on-exit) |
| 4270 | "Set MAP as a temporary keymap taking precedence over other keymaps. | 4273 | "Set MAP as a temporary keymap taking precedence over other keymaps. |
| 4271 | Normally, MAP is used only once, to look up the very next key. | 4274 | Normally, MAP is used only once, to look up the very next key. |