# HG changeset patch # User Karl Heuer # Date 796947376 0 # Node ID 0833fb6a29bbfcc68cf118d820e0ae95bf4699fc # Parent ca5effbebf81b9f2a23dc65f55739c3951f1dfeb (main): Start with an empty message log. diff -r ca5effbebf81 -r 0833fb6a29bb src/emacs.c --- a/src/emacs.c Mon Apr 03 22:14:27 1995 +0000 +++ b/src/emacs.c Mon Apr 03 22:16:16 1995 +0000 @@ -906,6 +906,16 @@ #endif /* CANNOT_DUMP */ } + if (initialized) + { + /* Erase any pre-dump messages in the message log, to avoid confusion */ + Lisp_Object old_log_max; + old_log_max = Vmessage_log_max; + XSETFASTINT (Vmessage_log_max, 0); + message_dolog ("", 0, 1); + Vmessage_log_max = old_log_max; + } + initialized = 1; #if defined (sun) || defined (LOCALTIME_CACHE)