aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1996-09-02 17:28:10 +0000
committerRichard M. Stallman1996-09-02 17:28:10 +0000
commite5446a46ef6fff6cb342bfde2821f50ad71ad7b6 (patch)
tree09d5bc2dde6decf508d7846750a73cebb82136c7 /src
parentd353f8febfdb7b510bc8b6cb005ff2018e2a9308 (diff)
downloademacs-e5446a46ef6fff6cb342bfde2821f50ad71ad7b6.tar.gz
emacs-e5446a46ef6fff6cb342bfde2821f50ad71ad7b6.zip
(Fencode_time) [_NEXT_SOURCE]: Use ZONE, not ABSZONE.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 6870ae11b4a..9aff3ed99da 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -769,7 +769,7 @@ If you want them to stand for years in this century, you must do that yourself."
769 tzstring = tzbuf; 769 tzstring = tzbuf;
770#ifdef _NEXT_SOURCE 770#ifdef _NEXT_SOURCE
771 /* On NEXTSTEP, timezone environment var is ignored. */ 771 /* On NEXTSTEP, timezone environment var is ignored. */
772 tm.tm_gmtoff = -abszone; 772 tm.tm_gmtoff = XINT (zone);
773#endif 773#endif
774 } 774 }
775 else 775 else