mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
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.
This commit is contained in:
parent
a8dbb7cc86
commit
c91c145d61
4 changed files with 18 additions and 5 deletions
|
|
@ -673,7 +673,7 @@ Create one if necessary. Note that the minibuffer frame, if separate,
|
|||
is not considered (see `next-frame')."
|
||||
(if (equal (next-frame) (selected-frame)) (make-frame) (next-frame)))
|
||||
|
||||
(defun next-multiframe-window ()
|
||||
(defun next-window-any-frame ()
|
||||
"Select the next window, regardless of which frame it is on."
|
||||
(interactive)
|
||||
(select-window (next-window (selected-window)
|
||||
|
|
@ -681,7 +681,7 @@ is not considered (see `next-frame')."
|
|||
0))
|
||||
(select-frame-set-input-focus (selected-frame)))
|
||||
|
||||
(defun previous-multiframe-window ()
|
||||
(defun previous-window-any-frame ()
|
||||
"Select the previous window, regardless of which frame it is on."
|
||||
(interactive)
|
||||
(select-window (previous-window (selected-window)
|
||||
|
|
@ -689,6 +689,9 @@ is not considered (see `next-frame')."
|
|||
0))
|
||||
(select-frame-set-input-focus (selected-frame)))
|
||||
|
||||
(defalias 'next-multiframe-window 'next-window-any-frame)
|
||||
(defalias 'previous-multiframe-window 'previous-window-any-frame)
|
||||
|
||||
(defun window-system-for-display (display)
|
||||
"Return the window system for DISPLAY.
|
||||
Return nil if we don't know how to interpret DISPLAY."
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue