diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-09-25 17:43:58 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-09-25 17:43:58 +0000 |
commit | 131f213390e3f4bfccd3ff01f39499cfa9bcdbe2 (patch) | |
tree | 57cadeab9c3b6628373c7b3f8a7dfb8a9494aeab | |
parent | 778d47c737a2ed17f2a76ba6c7c41e59d4643c61 (diff) | |
download | emacs-131f213390e3f4bfccd3ff01f39499cfa9bcdbe2.tar.gz emacs-131f213390e3f4bfccd3ff01f39499cfa9bcdbe2.tar.bz2 emacs-131f213390e3f4bfccd3ff01f39499cfa9bcdbe2.zip |
(update_echo_area): New function.
-rw-r--r-- | src/xdisp.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index fedc9628e89..09399a75ef6 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -348,6 +348,12 @@ message (m, a1, a2, a3) } } +void +update_echo_area () +{ + message2 (echo_area_glyphs, echo_area_glyphs_length); +} + static void echo_area_display () { |