# HG changeset patch # User Richard M. Stallman # Date 894169810 0 # Node ID ff6a09ae9530fa200c90540b318435104d46a9a1 # Parent ef39b27c5e20d2c01ecdb3b20167685c45bf970c Comment change. diff -r ef39b27c5e20 -r ff6a09ae9530 src/fileio.c --- a/src/fileio.c Sun May 03 03:48:05 1998 +0000 +++ b/src/fileio.c Sun May 03 04:30:10 1998 +0000 @@ -852,7 +852,12 @@ /* Here we try to minimize useless stat'ing when this function is invoked many times successively with the same PREFIX. We achieve this by initializing count to a random value, and incrementing it - afterwards. */ + afterwards. + + We don't want make-temp-name to be called while dumping, + because then make_temp_name_count_initialized_p would get set + and then make_temp_name_count would not be set when Emacs starts. */ + if (!make_temp_name_count_initialized_p) { make_temp_name_count = (unsigned) time (NULL);