]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorJim Blandy <jimb@redhat.com>
Mon, 12 Nov 1990 20:20:41 +0000 (20:20 +0000)
committerJim Blandy <jimb@redhat.com>
Mon, 12 Nov 1990 20:20:41 +0000 (20:20 +0000)
src/doprnt.c
src/sunfns.c

index 8795b8626cb44092d36d1574b17641d78bbc547a..8a7a68c2f0bb264bd08343283ead2a0464e10e32 100644 (file)
@@ -45,7 +45,8 @@ doprnt (buffer, bufsize, format, format_end, nargs, args)
     format_end = format + strlen (format);
 
   bufsize--;
-  while (fmt != format_end && bufsize > 0)     /* Loop until end of format string or buffer full */
+  while (fmt != format_end && bufsize > 0)     /* Loop until end of format
+                                                  string or buffer full */
     {
       if (*fmt == '%') /* Check for a '%' character */
        {
index 5851d76206ed83da7bc801243ce8e9c3f4e16546..8fcf8bd507ede6015536b3bfd859e6102a07154b 100644 (file)
@@ -153,7 +153,7 @@ Redisplay does not happen if input is available before it starts.")
   Timeout.tv_usec = (XINT(n) - (Timeout.tv_sec * 1000)) * 1000;
 
   if (detect_input_pending()) return(Qnil);
-  DoDsp(1);
+  redisplay_preserve_echo_area ();
   /*
    *   Check for queued keyboard input/mouse hits again
    *   (A bit screen update can take some time!)
@@ -186,7 +186,7 @@ DEFUN ("update-display", Fupdate_display, Supdate_display, 0, 0, 0,
        "Perform redisplay.")
      ()
 {
-  redisplay_preserving_echo_area ();
+  redisplay_preserve_echo_area ();
   return(Qt);
 }