]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fall_completions, Ftry_completion): Compare char sizes, not STRING_BYTES.
authorRichard M. Stallman <rms@gnu.org>
Tue, 12 May 1998 20:15:27 +0000 (20:15 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 12 May 1998 20:15:27 +0000 (20:15 +0000)
src/minibuf.c

index 2e89c61056460b78ed998e6205739fb88ae67189..f69f06f5ec951c060e0d82d3c4031c9dccb09e77 100644 (file)
@@ -968,7 +968,7 @@ or the symbol from the obarray.")
       /* Is this element a possible completion? */
 
       if (STRINGP (eltstring)
-         && STRING_BYTES (XSTRING (string)) <= STRING_BYTES (XSTRING (eltstring))
+         && XSTRING (string)->size <= XSTRING (eltstring)->size
          && (tem = Fcompare_strings (eltstring, make_number (0),
                                      make_number (XSTRING (string)->size),
                                      string, make_number (0), Qnil,
@@ -1216,7 +1216,7 @@ are ignored unless STRING itself starts with a space.")
       /* Is this element a possible completion? */
 
       if (STRINGP (eltstring)
-         && STRING_BYTES (XSTRING (string)) <= STRING_BYTES (XSTRING (eltstring))
+         && XSTRING (string)->size <= XSTRING (eltstring)->size
          /* If HIDE_SPACES, reject alternatives that start with space
             unless the input starts with space.  */
          && ((STRING_BYTES (XSTRING (string)) > 0