comparison src/emacs.c @ 815:6aabed5f5d58

entered into RCS
author Jim Blandy <jimb@redhat.com>
date Fri, 17 Jul 1992 20:35:53 +0000
parents f2efaa0394de
children 4441c4bcb376
comparison
equal deleted inserted replaced
814:38b2499cb3e9 815:6aabed5f5d58
547 #endif /* CANNOT_DUMP */ 547 #endif /* CANNOT_DUMP */
548 } 548 }
549 549
550 initialized = 1; 550 initialized = 1;
551 551
552 #ifdef sun
553 /* sun's localtime() has a bug. it caches the value of the time
554 zone rather than looking it up every time. Since localtime() is
555 called to bolt the undumping time into the undumped emacs, this
556 results in localtime() ignoring the TZ environment variable.
557 This flushes the new TZ value into localtime(). */
558 tzset();
559 #endif /* sun */
560
552 /* Enter editor command loop. This never returns. */ 561 /* Enter editor command loop. This never returns. */
553 Frecursive_edit (); 562 Frecursive_edit ();
554 /* NOTREACHED */ 563 /* NOTREACHED */
555 } 564 }
556 565