"max" -> "mac". Do not use a single clause cond.
2007-10-13 Dan Nicolaescu <dann@ics.uci.edu>
+ * frame.el (select-frame-set-input-focus): Fix typo
+ "max" -> "mac". Do not use a single clause cond.
+
* cus-start.el (all): Use test that does not match the X11 version
for mac.
(select-frame frame)
(raise-frame frame)
;; Ensure, if possible, that frame gets input focus.
- (cond ((memq (window-system frame) '(x max w32))
- (x-focus-frame frame)))
+ (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))))