diff options
author | Jim Blandy <jimb@redhat.com> | 1990-11-12 20:20:41 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1990-11-12 20:20:41 +0000 |
commit | 447c9a10acbd5ffb9504f7a72db532c0388aa695 (patch) | |
tree | 7107b4fb486ac73869622c34c4e3e21d5ca05e49 /src/sunfns.c | |
parent | 4a5f1de511c7241366b4fbc1aaba8c286cd2fdd9 (diff) | |
download | emacs-447c9a10acbd5ffb9504f7a72db532c0388aa695.tar.gz |
*** empty log message ***
Diffstat (limited to 'src/sunfns.c')
-rw-r--r-- | src/sunfns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sunfns.c b/src/sunfns.c index 5851d76206e..8fcf8bd507e 100644 --- a/src/sunfns.c +++ b/src/sunfns.c @@ -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); } |