]> git.eshelyaron.com Git - emacs.git/commitdiff
(string_char_to_byte): Optimize for ASCII only string.
authorKenichi Handa <handa@m17n.org>
Thu, 29 Jan 2004 02:55:34 +0000 (02:55 +0000)
committerKenichi Handa <handa@m17n.org>
Thu, 29 Jan 2004 02:55:34 +0000 (02:55 +0000)
(string_byte_to_char): Likewise.

src/fns.c

index fa99293fcce05128d2a0e99d062b06eea530531d..ea45b9d8dbb39f6a7ff297f19c56338c4285ab17 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -810,12 +810,11 @@ string_char_to_byte (string, char_index)
   int best_below, best_below_byte;
   int best_above, best_above_byte;
 
-  if (! STRING_MULTIBYTE (string))
-    return char_index;
-
   best_below = best_below_byte = 0;
   best_above = SCHARS (string);
   best_above_byte = SBYTES (string);
+  if (best_above == best_above_byte)
+    return char_index;
 
   if (EQ (string, string_char_byte_cache_string))
     {
@@ -873,12 +872,11 @@ string_byte_to_char (string, byte_index)
   int best_below, best_below_byte;
   int best_above, best_above_byte;
 
-  if (! STRING_MULTIBYTE (string))
-    return byte_index;
-
   best_below = best_below_byte = 0;
   best_above = SCHARS (string);
   best_above_byte = SBYTES (string);
+  if (best_above == best_above_byte)
+    return byte_index;
 
   if (EQ (string, string_char_byte_cache_string))
     {