aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-03-18 20:04:56 +0000
committerRichard M. Stallman1998-03-18 20:04:56 +0000
commit5265a8423588dc93ce53ecb75cc6a8e712b59938 (patch)
tree0e99b0810a7007a7a4405acb92a65e1a7a251946
parent0ac18fb09b7e8e13d61cb2e375b4f22ba5aeb8b1 (diff)
downloademacs-5265a8423588dc93ce53ecb75cc6a8e712b59938.tar.gz
emacs-5265a8423588dc93ce53ecb75cc6a8e712b59938.zip
(other-frame): Fix previous change.
-rw-r--r--lisp/frame.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/frame.el b/lisp/frame.el
index 82b42b06691..ba9d089eaac 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -524,7 +524,7 @@ A negative ARG moves in the opposite order."
524 ;; Ensure, if possible, that frame gets input focus. 524 ;; Ensure, if possible, that frame gets input focus.
525 (if (eq window-system 'w32) 525 (if (eq window-system 'w32)
526 (w32-focus-frame frame) 526 (w32-focus-frame frame)
527 (unless focus-follows-mouse 527 (when focus-follows-mouse
528 (set-mouse-position (selected-frame) (1- (frame-width)) 0))))) 528 (set-mouse-position (selected-frame) (1- (frame-width)) 0)))))
529 529
530(defun make-frame-names-alist () 530(defun make-frame-names-alist ()