aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index d21e6383764..3f9b5beeab6 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,52 @@
12011-10-20 Eli Zaretskii <eliz@gnu.org>
2
3 * dispextern.h (struct bidi_it): New member next_en_type.
4
5 * bidi.c (bidi_line_init): Initialize the next_en_type member.
6 (bidi_resolve_explicit_1): When next_en_pos is valid for the
7 current character, check also for next_en_type being WEAK_EN.
8 (bidi_resolve_weak): Don't enter the expensive loop if the current
9 position is before next_en_pos. Record the bidi type of the first
10 non-ET, non-BN character we find, in addition to its position.
11 (bidi_level_of_next_char): Invalidate next_en_type when
12 next_en_pos is over-stepped.
13
142011-10-20 Paul Eggert <eggert@cs.ucla.edu>
15
16 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
17 * editfns.c: Rewrite current-time-zone so that it invokes
18 the equivalent of (format-time-string "%Z") to get the time zone name.
19 This fixes a bug when the time zone name contains characters that
20 need converting from the system time locale to Emacs internal format.
21 This fixes a shortcoming that I introduced in my 1999-10-19 patch:
22 that patch fixed format-time-string to do the conversion, but
23 I forgot to fix current-time-zone.
24 (format_time_string): New function, containing most of
25 what Fformat_time_string used to contain.
26 (Fformat_time_string): Rewrite in terms of format_time_string.
27 This doesn't change this function's behavior.
28 (current-time-zone): Rewrite to use format_time_string.
29 This fixes the bug reported by Michael Schierl in
30 <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
31 Jason Rumney's 2007-06-07 change worked around this bug, but
32 didn't fix it.
33 * systime.h (tzname, timezone): Remove no-longer-used declarations.
34
352011-10-19 Eli Zaretskii <eliz@gnu.org>
36
37 * xdisp.c (start_display): If the character at POS is displayed
38 via a display vector, reset IT->current.dpvec_index to zero.
39 (try_window_reusing_current_matrix): If a line ends in a display
40 vector or the next line starts in a display vector, continue
41 redrawing the window even though the character position of
42 start_row was reached.
43 (Bug#9771, part 2)
44
452011-10-18 Chong Yidong <cyd@gnu.org>
46
47 * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
48 with nobreak-char-display too.
49
12011-10-18 Eli Zaretskii <eliz@gnu.org> 502011-10-18 Eli Zaretskii <eliz@gnu.org>
2 51
3 Fix part 3 of bug#9771. 52 Fix part 3 of bug#9771.