aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2011-07-27 17:24:58 -0700
committerPaul Eggert2011-07-27 17:24:58 -0700
commit8265d3bb30544e58683fc16e23f9908f3d5d0abc (patch)
tree01eff92ee95a19c0c20de9835de5f048a2671afd
parent2573a8376a387d19af355f68622512ac3e07d57a (diff)
downloademacs-8265d3bb30544e58683fc16e23f9908f3d5d0abc.tar.gz
emacs-8265d3bb30544e58683fc16e23f9908f3d5d0abc.zip
* bidi.c (bidi_dump_cached_states): Merge ptrdiff_t fix.
-rw-r--r--src/bidi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bidi.c b/src/bidi.c
index a6af9e36e15..697ebb92856 100644
--- a/src/bidi.c
+++ b/src/bidi.c
@@ -2319,7 +2319,7 @@ bidi_dump_cached_states (void)
2319 fprintf (stderr, "The cache is empty.\n"); 2319 fprintf (stderr, "The cache is empty.\n");
2320 return; 2320 return;
2321 } 2321 }
2322 fprintf (stderr, "Total of %"pI"d state%s in cache:\n", 2322 fprintf (stderr, "Total of %"pD"d state%s in cache:\n",
2323 bidi_cache_idx, bidi_cache_idx == 1 ? "" : "s"); 2323 bidi_cache_idx, bidi_cache_idx == 1 ? "" : "s");
2324 2324
2325 for (i = bidi_cache[bidi_cache_idx - 1].charpos; i > 0; i /= 10) 2325 for (i = bidi_cache[bidi_cache_idx - 1].charpos; i > 0; i /= 10)