aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-01-11 02:03:00 +0000
committerKarl Heuer1995-01-11 02:03:00 +0000
commit0b1005ef3c6ba945d5009e1734dfc653e59bce14 (patch)
tree9c7510c78b4a88627a74e89b8252980f602c41d1 /src
parent5992c4f72579c591ae862735bb237ebd88439c15 (diff)
downloademacs-0b1005ef3c6ba945d5009e1734dfc653e59bce14.tar.gz
emacs-0b1005ef3c6ba945d5009e1734dfc653e59bce14.zip
(message1_nolog): New function.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 2647f178e76..6179f88f973 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -314,6 +314,13 @@ message1 (m)
314 message2 (m, (m ? strlen (m) : 0)); 314 message2 (m, (m ? strlen (m) : 0));
315} 315}
316 316
317void
318message1_nolog (m)
319 char *m;
320{
321 message2_nolog (m, (m ? strlen (m) : 0));
322}
323
317/* Truncate what will be displayed in the echo area 324/* Truncate what will be displayed in the echo area
318 the next time we display it--but don't redisplay it now. */ 325 the next time we display it--but don't redisplay it now. */
319 326