Mercurial > emacs
changeset 13019:5381e2022370
(Fset_time_zone_rule): New function.
(syms_of_editfns): defsubr it.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 10 Sep 1995 04:37:21 +0000 |
parents | 9c090a7674c8 |
children | a656ccd43989 |
files | src/editfns.c |
diffstat | 1 files changed, 50 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/editfns.c Sun Sep 10 04:36:12 1995 +0000 +++ b/src/editfns.c Sun Sep 10 04:37:21 1995 +0000 @@ -899,6 +899,55 @@ return Fmake_list (2, Qnil); } +DEFUN ("set-time-zone-rule", Fset_time_zone_rule, Sset_time_zone_rule, 1, 1, 0, + "Set the local time zone using TZ, a string specifying a time zone rule.\n\ +If TZ is nil, use implementation-defined default time zone information.") + (tz) + Lisp_Object tz; +{ + extern char **environ; + static char **environbuf; + int envptrs; + char **from, **to, **newenv; + char *tzstring; + + if (NILP (tz)) + tzstring = 0; + else + { + CHECK_STRING (tz, 0); + tzstring = XSTRING (tz)->data; + } + + for (from = environ; *from; from++) + continue; + envptrs = from - environ + 2; + newenv = to = (char **) xmalloc (envptrs * sizeof (char *) + + (tzstring ? strlen (tzstring) + 4 : 0)); + if (tzstring) + { + char *t = (char *) (to + envptrs); + strcpy (t, "TZ="); + strcat (t, tzstring); + *to++ = t; + } + + for (from = environ; *from; from++) + if (strncmp (*from, "TZ=", 3) != 0) + *to++ = *from; + *to = 0; + + environ = newenv; + if (environbuf) + free (environbuf); + environbuf = newenv; + +#ifdef LOCALTIME_CACHE + tzset (); +#endif + + return Qnil; +} void insert1 (arg) @@ -2319,6 +2368,7 @@ defsubr (&Sencode_time); defsubr (&Scurrent_time_string); defsubr (&Scurrent_time_zone); + defsubr (&Sset_time_zone_rule); defsubr (&Ssystem_name); defsubr (&Smessage); defsubr (&Smessage_box);