aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-04-21 13:02:41 +0000
committerGerd Moellmann2000-04-21 13:02:41 +0000
commitbd55b8608aee6c7b36cc1ac704040abeaa357a04 (patch)
tree896af72cb0a962995271402d0eef3eef370b3867 /src
parentd47f18ca7665867c88d1f53fba381689b22a3bc6 (diff)
downloademacs-bd55b8608aee6c7b36cc1ac704040abeaa357a04.tar.gz
emacs-bd55b8608aee6c7b36cc1ac704040abeaa357a04.zip
(timer_check): Fix typo in comment.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 5ccdf319fc7..47fb2bc5b39 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -3663,7 +3663,7 @@ timer_check (do_it_now)
3663 } 3663 }
3664 vector = XVECTOR (chosen_timer)->contents; 3664 vector = XVECTOR (chosen_timer)->contents;
3665 3665
3666 /* If timer is rupe, run it if it hasn't been run. */ 3666 /* If timer is ripe, run it if it hasn't been run. */
3667 if (EMACS_TIME_NEG_P (difference) 3667 if (EMACS_TIME_NEG_P (difference)
3668 || (EMACS_SECS (difference) == 0 3668 || (EMACS_SECS (difference) == 0
3669 && EMACS_USECS (difference) == 0)) 3669 && EMACS_USECS (difference) == 0))