aboutsummaryrefslogtreecommitdiffstats
path: root/src/editfns.c
diff options
context:
space:
mode:
authorRichard M. Stallman1996-01-17 17:54:40 +0000
committerRichard M. Stallman1996-01-17 17:54:40 +0000
commita92ae0ce7b3a9d01246e1c06ecabb680bdd5fa54 (patch)
treeb55c4d4b4e0a4e8b89bb592eb146f3b50466ef1c /src/editfns.c
parent2368fc6ff0d30dfee83def9e24b20b7516ef2b51 (diff)
downloademacs-a92ae0ce7b3a9d01246e1c06ecabb680bdd5fa54.tar.gz
emacs-a92ae0ce7b3a9d01246e1c06ecabb680bdd5fa54.zip
(set_time_zone_rule): No longer static.
Diffstat (limited to 'src/editfns.c')
-rw-r--r--src/editfns.c4
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;
42extern Lisp_Object make_time (); 42extern Lisp_Object make_time ();
43extern void insert_from_buffer (); 43extern void insert_from_buffer ();
44static long difftm (); 44static long difftm ();
45static void set_time_zone_rule ();
46static void update_buffer_properties (); 45static void update_buffer_properties ();
46void set_time_zone_rule ();
47 47
48Lisp_Object Vbuffer_access_fontify_functions; 48Lisp_Object Vbuffer_access_fontify_functions;
49Lisp_Object Qbuffer_access_fontify_functions; 49Lisp_Object Qbuffer_access_fontify_functions;
@@ -916,7 +916,7 @@ If TZ is nil, use implementation-defined default time zone information.")
916/* Set the local time zone rule to TZSTRING. 916/* Set the local time zone rule to TZSTRING.
917 This allocates memory into `environ', which it is the caller's 917 This allocates memory into `environ', which it is the caller's
918 responsibility to free. */ 918 responsibility to free. */
919static void 919void
920set_time_zone_rule (tzstring) 920set_time_zone_rule (tzstring)
921 char *tzstring; 921 char *tzstring;
922{ 922{