Mercurial > emacs
changeset 14454:e5414c274414
(echo_now): Renamed from `echo'. All callers changed.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 01 Feb 1996 06:04:44 +0000 |
parents | 58afa829c736 |
children | 1ce19c0594b1 |
files | src/keyboard.c |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- 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 (); } }