From 68de0e2dfce5a25d4430d6485e0e174897219546 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Thu, 21 Jan 2021 14:41:37 +0700 Subject: [PATCH] Use the same TIMER_INTERVAL on all platforms. (#262) This removes a special case for SPARC which was using a slower interval. --- src/timer.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/timer.c b/src/timer.c index d8a952b..79844e5 100644 --- a/src/timer.c +++ b/src/timer.c @@ -405,12 +405,7 @@ void update_timer() { /* TIMER_INTERVAL usec ~ 20 per second. This should live in some machine-configuration file somewhere - it can be changed as the -t parameter to lisp*/ - -#ifdef sparc -int TIMER_INTERVAL = 100000; -#else int TIMER_INTERVAL = 25000; -#endif extern int LispWindowFd;