mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-10 05:30:45 -08:00
Fix format conversion in bidi.c.
src/bidi.c (bidi_dump_cached_states): Fix format of displaying bidi_cache_idx.
This commit is contained in:
parent
d1583c48e5
commit
df9733bf6b
2 changed files with 4 additions and 1 deletions
|
|
@ -1,5 +1,8 @@
|
|||
2011-07-14 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* bidi.c (bidi_dump_cached_states): Fix format of displaying
|
||||
bidi_cache_idx.
|
||||
|
||||
Support bidi reordering of display and overlay strings.
|
||||
* xdisp.c (compute_display_string_pos)
|
||||
(compute_display_string_end): Accept additional argument STRING.
|
||||
|
|
|
|||
|
|
@ -2308,7 +2308,7 @@ bidi_dump_cached_states (void)
|
|||
fprintf (stderr, "The cache is empty.\n");
|
||||
return;
|
||||
}
|
||||
fprintf (stderr, "Total of %d state%s in cache:\n",
|
||||
fprintf (stderr, "Total of %"pD"d state%s in cache:\n",
|
||||
bidi_cache_idx, bidi_cache_idx == 1 ? "" : "s");
|
||||
|
||||
for (i = bidi_cache[bidi_cache_idx - 1].charpos; i > 0; i /= 10)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue