aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorStefan Kangas2019-11-06 00:49:02 +0100
committerStefan Kangas2019-11-06 00:49:19 +0100
commitc91c145d61cb53cb9f88686cbde4aaf6d9c42794 (patch)
treec9e7dd4103fa32a96c8480aa7bb929a6885ebc61 /etc
parenta8dbb7cc865f227a39708df3fe8d24e6f52b6e28 (diff)
downloademacs-c91c145d61cb53cb9f88686cbde4aaf6d9c42794.tar.gz
emacs-c91c145d61cb53cb9f88686cbde4aaf6d9c42794.zip
Rename *-multiframe-window to *-window-any-frame
Suggested by Drew Adams. * lisp/frame.el (next-multiframe-window): Define as obsolete alias for... (next-window-any-frame): ...new function name. (previous-multiframe-window): Define as obsolete alias for... (previous-window-any-frame): ...new function name. (Bug#12436) * lisp/term/ns-win.el (global-map): Use new command name. * doc/emacs/windows.texi (Other Window): Document it. * etc/NEWS: Announce it.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS10
1 files changed, 10 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index a5b9dbdebd0..87aa5b5505f 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -202,6 +202,16 @@ the new version of the file again.)
202 202
203* Changes in Emacs 27.1 203* Changes in Emacs 27.1
204 204
205+++
206** 'next/previous-multiframe-window' have been renamed.
207The new names are as follows:
208
209 'next-multiframe-window' -> 'next-window-any-frame'
210 'previous-multiframe-window' -> 'previous-window-any-frame'
211
212The old function names are maintained as aliases for backward
213compatibility.
214
205** emacsclient 215** emacsclient
206 216
207+++ 217+++