aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKaroly Lorentey2005-12-30 06:15:47 +0000
committerKaroly Lorentey2005-12-30 06:15:47 +0000
commitd290c5544069cc5c0f565d63ffe370ee355f630d (patch)
tree3f8036aef98c790b94cbfe91d9a4efeeda4c79af /lisp
parent526039df1cd827ba428597b42046fe2b28d170c7 (diff)
downloademacs-d290c5544069cc5c0f565d63ffe370ee355f630d.tar.gz
emacs-d290c5544069cc5c0f565d63ffe370ee355f630d.zip
Fix splash screen loosing input events on Emacsclient frames.
* lisp/startup.el (fancy-splash-screens): Use `overriding-local-map' instead of `overriding-terminal-local-map' for now; the latter doesn't work right, it looses keypresses to another terminal. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-478
Diffstat (limited to 'lisp')
-rw-r--r--lisp/startup.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/startup.el b/lisp/startup.el
index 6ae2163687a..db65131844c 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -1334,7 +1334,7 @@ mouse."
1334 (catch 'stop-splashing 1334 (catch 'stop-splashing
1335 (unwind-protect 1335 (unwind-protect
1336 (let* ((map (make-sparse-keymap)) 1336 (let* ((map (make-sparse-keymap))
1337 (overriding-terminal-local-map map) 1337 (overriding-local-map map)
1338 ;; Catch if our frame is deleted; the delete-frame 1338 ;; Catch if our frame is deleted; the delete-frame
1339 ;; event is unreliable and is handled by 1339 ;; event is unreliable and is handled by
1340 ;; `special-event-map' anyway. 1340 ;; `special-event-map' anyway.