# HG changeset patch # User Jim Blandy # Date 707462286 0 # Node ID 6217fa6e2cab2a511cbed427b1ecbdebc1464575 # Parent f81a3cf6ec22e06cdab715e1376c53d5b5e986b5 *** empty log message *** diff -r f81a3cf6ec22 -r 6217fa6e2cab src/dispnew.c --- a/src/dispnew.c Tue Jun 02 04:15:32 1992 +0000 +++ b/src/dispnew.c Tue Jun 02 05:18:06 1992 +0000 @@ -1860,6 +1860,9 @@ if (display) redisplay_preserve_echo_area (); + if (sec == 0 && usec == 0) + return Qt; + #ifdef SIGIO gobble_input (); #endif @@ -1907,10 +1910,6 @@ CHECK_NUMBER (arg, 0); - sec = XINT (arg); - if (sec <= 0) - return Qt; - if (!NILP (millisec)) { #ifndef EMACS_HAS_USECS diff -r f81a3cf6ec22 -r 6217fa6e2cab src/lread.c --- a/src/lread.c Tue Jun 02 04:15:32 1992 +0000 +++ b/src/lread.c Tue Jun 02 05:18:06 1992 +0000 @@ -513,21 +513,21 @@ int count = specpdl_ptr - specpdl; Lisp_Object tem, buf; - if (NIL_P (bufname)) + if (NILP (bufname)) buf = Fcurrent_buffer (); else buf = Fget_buffer (bufname); - if (NIL_P (buf)) + if (NILP (buf)) error ("No such buffer."); - if (NIL_P (printflag)) + if (NILP (printflag)) tem = Qsymbolp; else tem = printflag; specbind (Qstandard_output, tem); record_unwind_protect (save_excursion_restore, save_excursion_save ()); BUF_SET_PT (XBUFFER (buf), BUF_BEGV (XBUFFER (buf))); - readevalloop (buf, 0, Feval, !NIL_P (printflag)); + readevalloop (buf, 0, Feval, !NILP (printflag)); unbind_to (count); return Qnil;