]> git.eshelyaron.com Git - emacs.git/commitdiff
Pacify --enable-gcc-warnings CANNOT_DUMP=yes
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 20 Nov 2016 21:24:53 +0000 (13:24 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 20 Nov 2016 21:25:45 +0000 (13:25 -0800)
* src/editfns.c (dump_tz_string) [CANNOT_DUMP || !HAVE_TZSET]:
Do not define.  If defining, do it in a smaller scope.

src/editfns.c

index 72c7a9c27c99b91cb9d65f9f8d342e5490eb5cbd..6ea8cbaf5e4529745c8a4b58cba0f90e5fe452ab 100644 (file)
@@ -87,10 +87,6 @@ static timezone_t local_tz;
 static timezone_t wall_clock_tz;
 static timezone_t const utc_tz = 0;
 
-/* A valid but unlikely setting for the TZ environment variable.
-   It is OK (though a bit slower) if the user chooses this value.  */
-static char dump_tz_string[] = "TZ=UtC0";
-
 /* The cached value of Vsystem_name.  This is used only to compare it
    to Vsystem_name, so it need not be visible to the GC.  */
 static Lisp_Object cached_system_name;
@@ -230,6 +226,12 @@ tzlookup (Lisp_Object zone, bool settz)
 void
 init_editfns (bool dumping)
 {
+#if !defined CANNOT_DUMP && defined HAVE_TZSET
+  /* A valid but unlikely setting for the TZ environment variable.
+     It is OK (though a bit slower) if the user chooses this value.  */
+  static char dump_tz_string[] = "TZ=UtC0";
+#endif
+
   const char *user_name;
   register char *p;
   struct passwd *pw;   /* password entry for the current user */