aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2002-11-26 17:48:07 +0000
committerDave Love2002-11-26 17:48:07 +0000
commit8395d85077eae6904e37bdee1b97e44561a7d47d (patch)
tree5b39293241a8070bd36bc8c3b9569a909dd4cf7d /src
parentb43dfebd5773b5955f7af2f11080fd673d410f86 (diff)
downloademacs-8395d85077eae6904e37bdee1b97e44561a7d47d.tar.gz
emacs-8395d85077eae6904e37bdee1b97e44561a7d47d.zip
(Flanginfo): Call synchronize_system_time_locale.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog7
-rw-r--r--src/fns.c2
2 files changed, 9 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index d1c3d0d21dc..de1f61dc1f7 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12002-11-26 Dave Love <fx@gnu.org>
2
3 * fns.c (Flanginfo): Call synchronize_system_time_locale.
4
12002-11-07 Kenichi Handa <handa@m17n.org> 52002-11-07 Kenichi Handa <handa@m17n.org>
2 6
3 The following changes are to make character composition happen 7 The following changes are to make character composition happen
@@ -30,6 +34,9 @@
30 34
312002-11-06 Dave Love <fx@gnu.org> 352002-11-06 Dave Love <fx@gnu.org>
32 36
37 * keyboard.c (read_char): Modify checking around use of
38 Vkeyboard_translate_table.
39
33 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table 40 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
34 and fix C types. 41 and fix C types.
35 42
diff --git a/src/fns.c b/src/fns.c
index c11f9d0c80d..2812d11907d 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -2801,6 +2801,7 @@ nl_langinfo(3), return nil. */)
2801 Lisp_Object v = Fmake_vector (make_number (7), Qnil); 2801 Lisp_Object v = Fmake_vector (make_number (7), Qnil);
2802 int days[7] = {DAY_1, DAY_2, DAY_3, DAY_4, DAY_5, DAY_6, DAY_7}; 2802 int days[7] = {DAY_1, DAY_2, DAY_3, DAY_4, DAY_5, DAY_6, DAY_7};
2803 int i; 2803 int i;
2804 synchronize_system_time_locale ();
2804 for (i = 0; i < 7; i++) 2805 for (i = 0; i < 7; i++)
2805 { 2806 {
2806 str = nl_langinfo (days[i]); 2807 str = nl_langinfo (days[i]);
@@ -2818,6 +2819,7 @@ nl_langinfo(3), return nil. */)
2818 int months[12] = {MON_1, MON_2, MON_3, MON_4, MON_5, MON_6, MON_7, 2819 int months[12] = {MON_1, MON_2, MON_3, MON_4, MON_5, MON_6, MON_7,
2819 MON_8, MON_9, MON_10, MON_11, MON_12}; 2820 MON_8, MON_9, MON_10, MON_11, MON_12};
2820 int i; 2821 int i;
2822 synchronize_system_time_locale ();
2821 for (i = 0; i < 12; i++) 2823 for (i = 0; i < 12; i++)
2822 { 2824 {
2823 str = nl_langinfo (months[i]); 2825 str = nl_langinfo (months[i]);