diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-01-17 17:54:40 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-01-17 17:54:40 +0000 |
commit | 1387a119bf7bcc934aa9048a44b95e7eb5861979 (patch) | |
tree | 9b0df7d7e514e97b5894df82e73b15ba1e6eba72 /src/editfns.c | |
parent | 218546548a124005919961b9063ae25d9178ebb8 (diff) | |
download | emacs-1387a119bf7bcc934aa9048a44b95e7eb5861979.tar.gz |
(set_time_zone_rule): No longer static.
Diffstat (limited to 'src/editfns.c')
-rw-r--r-- | src/editfns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/editfns.c b/src/editfns.c index d54f494ef76..4f74ad35eb5 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -42,8 +42,8 @@ extern char **environ; extern Lisp_Object make_time (); extern void insert_from_buffer (); static long difftm (); -static void set_time_zone_rule (); static void update_buffer_properties (); +void set_time_zone_rule (); Lisp_Object Vbuffer_access_fontify_functions; Lisp_Object Qbuffer_access_fontify_functions; @@ -916,7 +916,7 @@ If TZ is nil, use implementation-defined default time zone information.") /* Set the local time zone rule to TZSTRING. This allocates memory into `environ', which it is the caller's responsibility to free. */ -static void +void set_time_zone_rule (tzstring) char *tzstring; { |