emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/atimer.c [emacs-unicode-2]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/src/atimer.c [emacs-unicode-2]
Date: Fri, 23 Jul 2004 00:42:03 -0400

Index: emacs/src/atimer.c
diff -c emacs/src/atimer.c:1.12.6.2 emacs/src/atimer.c:1.12.6.3
*** emacs/src/atimer.c:1.12.6.2 Mon Jun 28 07:29:17 2004
--- emacs/src/atimer.c  Fri Jul 23 04:30:41 2004
***************
*** 375,381 ****
--- 375,383 ----
  
        t = atimers;
        atimers = atimers->next;
+ #ifndef MAC_OSX
        t->fn (t);
+ #endif
  
        if (t->type == ATIMER_CONTINUOUS)
        {
***************
*** 387,392 ****
--- 389,398 ----
          t->next = free_atimers;
          free_atimers = t;
        }
+ #ifdef MAC_OSX
+       /* Fix for Ctrl-G.  Perhaps this should apply to all platforms. */
+       t->fn (t); 
+ #endif
  
        EMACS_GET_TIME (now);
      }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]