]> git.eshelyaron.com Git - emacs.git/commitdiff
(Flanginfo): Call synchronize_system_time_locale.
authorDave Love <fx@gnu.org>
Tue, 26 Nov 2002 17:48:07 +0000 (17:48 +0000)
committerDave Love <fx@gnu.org>
Tue, 26 Nov 2002 17:48:07 +0000 (17:48 +0000)
src/ChangeLog
src/fns.c

index d1c3d0d21dcafa193c8243d29abc966ea3f9d936..de1f61dc1f711d6919ab914271021d4f2a8082af 100644 (file)
@@ -1,3 +1,7 @@
+2002-11-26  Dave Love  <fx@gnu.org>
+
+       * fns.c (Flanginfo): Call synchronize_system_time_locale.
+
 2002-11-07  Kenichi Handa  <handa@m17n.org>
 
        The following changes are to make character composition happen
@@ -30,6 +34,9 @@
 
 2002-11-06  Dave Love  <fx@gnu.org>
 
+       * keyboard.c (read_char): Modify checking around use of
+       Vkeyboard_translate_table.
+
        * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
        and fix C types.
 
index c11f9d0c80d59cc09ff6ecb0dd90cfac0821a630..2812d11907d4d2a04a8c274a5693bcb941b1854a 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -2801,6 +2801,7 @@ nl_langinfo(3), return nil.  */)
       Lisp_Object v = Fmake_vector (make_number (7), Qnil);
       int days[7] = {DAY_1, DAY_2, DAY_3, DAY_4, DAY_5, DAY_6, DAY_7};
       int i;
+      synchronize_system_time_locale ();
       for (i = 0; i < 7; i++)
        {
          str = nl_langinfo (days[i]);
@@ -2818,6 +2819,7 @@ nl_langinfo(3), return nil.  */)
       int months[12] = {MON_1, MON_2, MON_3, MON_4, MON_5, MON_6, MON_7,
                        MON_8, MON_9, MON_10, MON_11, MON_12};
       int i;
+      synchronize_system_time_locale ();
       for (i = 0; i < 12; i++)
        {
          str = nl_langinfo (months[i]);