From de30d842fcc95576648fe2b9ee7480e77f3737a5 Mon Sep 17 00:00:00 2001 From: Dan Nicolaescu Date: Sat, 13 Oct 2007 17:57:47 +0000 Subject: [PATCH] Do not use a single clause cond. --- lisp/frame.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/frame.el b/lisp/frame.el index 95cddb5112e..30573db9e66 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -821,9 +821,9 @@ the user during startup." (raise-frame frame) ;; Ensure, if possible, that frame gets input focus. (when (memq (window-system frame) '(x mac w32)) - (x-focus-frame frame)) - (cond (focus-follows-mouse - (set-mouse-position (selected-frame) (1- (frame-width)) 0)))) + (x-focus-frame frame)) + (when focus-follows-mouse + (set-mouse-position (selected-frame) (1- (frame-width)) 0))) (defun other-frame (arg) "Select the ARGth different visible frame on current display, and raise it. -- 2.11.4.GIT