diff options
| author | Kim F. Storm | 2006-07-11 20:10:34 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2006-07-11 20:10:34 +0000 |
| commit | 7ca462f695b60384865a9458a7abe79098a0d679 (patch) | |
| tree | 57299919e6c75f96cb2f19c2d62ba86de5e602cb | |
| parent | ab9b1db5949e1afa1782a2fefcffe19fb9fd850d (diff) | |
| download | emacs-7ca462f695b60384865a9458a7abe79098a0d679.tar.gz emacs-7ca462f695b60384865a9458a7abe79098a0d679.zip | |
(temp_echo_area_glyphs): Update/simplify sit_for calls.
| -rw-r--r-- | src/minibuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index af8cfe33e37..9c56ea8618e 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -2692,7 +2692,7 @@ temp_echo_area_glyphs (string) | |||
| 2692 | insert_from_string (string, 0, 0, SCHARS (string), SBYTES (string), 0); | 2692 | insert_from_string (string, 0, 0, SCHARS (string), SBYTES (string), 0); |
| 2693 | SET_PT_BOTH (opoint, opoint_byte); | 2693 | SET_PT_BOTH (opoint, opoint_byte); |
| 2694 | Vinhibit_quit = Qt; | 2694 | Vinhibit_quit = Qt; |
| 2695 | sit_for (2, 0, 0, Qt, Qt); | 2695 | sit_for (make_number (2), 0, 2); |
| 2696 | del_range_both (osize, osize_byte, ZV, ZV_BYTE, 1); | 2696 | del_range_both (osize, osize_byte, ZV, ZV_BYTE, 1); |
| 2697 | SET_PT_BOTH (opoint, opoint_byte); | 2697 | SET_PT_BOTH (opoint, opoint_byte); |
| 2698 | if (!NILP (Vquit_flag)) | 2698 | if (!NILP (Vquit_flag)) |