aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeoff Voelker1997-09-02 19:39:14 +0000
committerGeoff Voelker1997-09-02 19:39:14 +0000
commit9d702ce661feca4d2ae568d4acf89ccac9ba0701 (patch)
treebf0c79b705284e0846566512a9c81f844a2e5960
parentb1667e6c861b23b17667bdfaa1a06b9a6042b5af (diff)
downloademacs-9d702ce661feca4d2ae568d4acf89ccac9ba0701.tar.gz
emacs-9d702ce661feca4d2ae568d4acf89ccac9ba0701.zip
(other-frame) [windows-nt]: Use w32-focus-frame.
-rw-r--r--lisp/frame.el5
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