diff options
| author | Geoff Voelker | 1997-09-02 19:39:14 +0000 |
|---|---|---|
| committer | Geoff Voelker | 1997-09-02 19:39:14 +0000 |
| commit | 9d702ce661feca4d2ae568d4acf89ccac9ba0701 (patch) | |
| tree | bf0c79b705284e0846566512a9c81f844a2e5960 | |
| parent | b1667e6c861b23b17667bdfaa1a06b9a6042b5af (diff) | |
| download | emacs-9d702ce661feca4d2ae568d4acf89ccac9ba0701.tar.gz emacs-9d702ce661feca4d2ae568d4acf89ccac9ba0701.zip | |
(other-frame) [windows-nt]: Use w32-focus-frame.
| -rw-r--r-- | lisp/frame.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index cd23db06c08..96d103e1229 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -516,7 +516,10 @@ A negative ARG moves in the opposite order." | |||
| 516 | (setq arg (1+ arg))) | 516 | (setq arg (1+ arg))) |
| 517 | (raise-frame frame) | 517 | (raise-frame frame) |
| 518 | (select-frame frame) | 518 | (select-frame frame) |
| 519 | (set-mouse-position (selected-frame) (1- (frame-width)) 0))) | 519 | ;; Ensure, if possible, that frame gets input focus. |
| 520 | (if (eq window-system 'w32) | ||
| 521 | (w32-focus-frame frame) | ||
| 522 | (set-mouse-position (selected-frame) (1- (frame-width)) 0)))) | ||
| 520 | 523 | ||
| 521 | ;;;; Frame configurations | 524 | ;;;; Frame configurations |
| 522 | 525 | ||