* src/emacs.c (main): If invoked with --version, call
'init_bignum' before calling 'format-time-string', as that is
needed for safe manipulation of bignums in timefns.c.
if (initialized)
{
Lisp_Object tem, tem2;
+
+ /* Fformat_time_string below manipulates bignums, so we need
+ this initialization. */
+ init_bignum ();
+
tem = Fsymbol_value (intern_c_string ("emacs-version"));
tem2 = Fsymbol_value (intern_c_string ("emacs-copyright"));
if (!STRINGP (tem))