Index: editfns.c =================================================================== RCS file: /pack/xemacscvs/XEmacs/xemacs/src/editfns.c,v retrieving revision 1.35 diff -r1.35 editfns.c 1073a1074 > struct tm * tm; 1078c1079,1082 < if (! lisp_to_time (time_, &value)) --- > /* if `time_' has the form '(-1 x y) then `value' stores negative integer > and localtime returns NULL. Check it. npak@ispras.ru */ > if (! lisp_to_time (time_, &value) || > ((tm = localtime (&value)) == NULL)) 1094c1098 < localtime (&value)) --- > tm)