aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert1996-09-03 05:24:22 +0000
committerPaul Eggert1996-09-03 05:24:22 +0000
commit8eaa6efed2961c2d15e739e413a655e414fa24d5 (patch)
tree3f5d85aa63622c3ba0959881fc3516a11aa9fb7a /src
parentaf4b946d6a60ad6b55e9c255918182482bebad86 (diff)
downloademacs-8eaa6efed2961c2d15e739e413a655e414fa24d5.tar.gz
emacs-8eaa6efed2961c2d15e739e413a655e414fa24d5.zip
(Fencode_time): Remove NEXTSTEP workaround;
we now use our mktime instead.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 9aff3ed99da..dfe80b3c4bf 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -767,10 +767,6 @@ If you want them to stand for years in this century, you must do that yourself."
767 sprintf (tzbuf, "XXX%s%d:%02d:%02d", "-" + (XINT (zone) < 0), 767 sprintf (tzbuf, "XXX%s%d:%02d:%02d", "-" + (XINT (zone) < 0),
768 abszone / (60*60), (abszone/60) % 60, abszone % 60); 768 abszone / (60*60), (abszone/60) % 60, abszone % 60);
769 tzstring = tzbuf; 769 tzstring = tzbuf;
770#ifdef _NEXT_SOURCE
771 /* On NEXTSTEP, timezone environment var is ignored. */
772 tm.tm_gmtoff = XINT (zone);
773#endif
774 } 770 }
775 else 771 else
776 error ("Invalid time zone specification"); 772 error ("Invalid time zone specification");