# HG changeset patch # User Richard M. Stallman # Date 823154684 0 # Node ID e5414c27441462ab400d28a2c0a9e2b34c2dcb48 # Parent 58afa829c736dc1217e59a5f353da713dd3ae318 (echo_now): Renamed from `echo'. All callers changed. diff -r 58afa829c736 -r e5414c274414 src/keyboard.c --- a/src/keyboard.c Thu Feb 01 06:01:15 1996 +0000 +++ b/src/keyboard.c Thu Feb 01 06:04:44 1996 +0000 @@ -560,7 +560,7 @@ current_kboard->echo_after_prompt = len; - echo (); + echo_now (); } /* Add C to the echo string, if echoing is going on. @@ -608,7 +608,7 @@ *ptr = 0; current_kboard->echoptr = ptr; - echo (); + echo_now (); } } @@ -633,13 +633,13 @@ current_kboard->echoptr[0] = '-'; current_kboard->echoptr[1] = 0; - echo (); + echo_now (); } /* Display the current echo string, and begin echoing if not already doing so. */ -echo () +echo_now () { if (!current_kboard->immediate_echo) { @@ -1825,7 +1825,7 @@ This is because we are probably about to display a menu, and we don't want to delay before doing so. */ if (EVENT_HAS_PARAMETERS (prev_event)) - echo (); + echo_now (); else { save_getcjmp (save_jump); @@ -1833,7 +1833,7 @@ tem0 = sit_for (echo_keystrokes, 0, 1, 1); restore_getcjmp (save_jump); if (EQ (tem0, Qt)) - echo (); + echo_now (); } }