aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1996-04-12 22:59:58 +0000
committerRichard M. Stallman1996-04-12 22:59:58 +0000
commitd1fc67525ef7477fce47e2c80bdce9480073a722 (patch)
tree347cd360c27f26e9c8e44075bcdbc1e540c135e1
parentffd76827b0eda72f38f6972d49b38bdd6a01602a (diff)
downloademacs-d1fc67525ef7477fce47e2c80bdce9480073a722.tar.gz
emacs-d1fc67525ef7477fce47e2c80bdce9480073a722.zip
(main) [MSDOS]: Always call tzset, not init__gettimeofday.
-rw-r--r--src/emacs.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/emacs.c b/src/emacs.c
index ddc88607ebd..5a603e3d139 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -790,13 +790,7 @@ Usage: %s [-t term] [--terminal term] [-nw] [--no-windows] [--batch]\n\
790 if (initialized) 790 if (initialized)
791 init_environment (argc, argv, skip_args); 791 init_environment (argc, argv, skip_args);
792 else 792 else
793 { 793 tzset ();
794#if __DGJPP__ >= 2
795 tzset ();
796#else
797 init_gettimeofday ();
798#endif
799 }
800#endif /* MSDOS */ 794#endif /* MSDOS */
801 795
802#ifdef WINDOWSNT 796#ifdef WINDOWSNT