aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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