Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
2b444e1f
Commit
2b444e1f
authored
Oct 13, 2007
by
Dan Nicolaescu
Browse files
* frame.el (select-frame-set-input-focus): Fix typo
"max" -> "mac". Do not use a single clause cond.
parent
ce00d093
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
lisp/ChangeLog
lisp/ChangeLog
+3
-0
lisp/frame.el
lisp/frame.el
+2
-2
No files found.
lisp/ChangeLog
View file @
2b444e1f
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.
...
...
lisp/frame.el
View file @
2b444e1f
...
...
@@ -820,8 +820,8 @@ the user during startup."
(
select-frame
frame
)
(
raise-frame
frame
)
;; Ensure, if possible, that frame gets input focus.
(
cond
(
(
memq
(
window-system
frame
)
'
(
x
ma
x
w32
))
(
x-focus-frame
frame
))
)
(
when
(
memq
(
window-system
frame
)
'
(
x
ma
c
w32
))
(
x-focus-frame
frame
))
(
cond
(
focus-follows-mouse
(
set-mouse-position
(
selected-frame
)
(
1-
(
frame-width
))
0
))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment