[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/macterm.c
From: |
Andrew Choi |
Subject: |
[Emacs-diffs] Changes to emacs/src/macterm.c |
Date: |
Sun, 04 Aug 2002 15:29:06 -0400 |
Index: emacs/src/macterm.c
diff -c emacs/src/macterm.c:1.13 emacs/src/macterm.c:1.14
*** emacs/src/macterm.c:1.13 Sat Aug 3 18:21:09 2002
--- emacs/src/macterm.c Sun Aug 4 15:29:06 2002
***************
*** 12610,12616 ****
#if USE_CARBON_EVENTS
rneResult = ReceiveNextEvent (0, NULL,
! expected ? TicksToEventTime(app_sleep_time) : 0,
true, &eventRef);
if (!rneResult)
{
--- 12610,12618 ----
#if USE_CARBON_EVENTS
rneResult = ReceiveNextEvent (0, NULL,
! expected
! ? TicksToEventTime (app_sleep_time)
! : 0,
true, &eventRef);
if (!rneResult)
{
***************
*** 12869,12874 ****
--- 12871,12883 ----
int keycode = (er.message & keyCodeMask) >> 8;
int xkeysym;
+ if (!IsValidWindowPtr (FrontNonFloatingWindow ()))
+ {
+ SysBeep (1);
+ UNBLOCK_INPUT;
+ return 0;
+ }
+
ObscureCursor ();
if (keycode == 0x33) /* delete key (charCode translated to 0x8) */
- [Emacs-diffs] Changes to emacs/src/macterm.c, Andrew Choi, 2002/08/03
- [Emacs-diffs] Changes to emacs/src/macterm.c,
Andrew Choi <=
- [Emacs-diffs] Changes to emacs/src/macterm.c, Andrew Choi, 2002/08/10
- [Emacs-diffs] Changes to emacs/src/macterm.c, Andrew Choi, 2002/08/12
- [Emacs-diffs] Changes to emacs/src/macterm.c, Andrew Choi, 2002/08/25
- [Emacs-diffs] Changes to emacs/src/macterm.c, Kim F. Storm, 2002/08/30
- [Emacs-diffs] Changes to emacs/src/macterm.c, Andrew Choi, 2002/08/30