]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fstring): Use make_string_from_bytes.
authorRichard M. Stallman <rms@gnu.org>
Sat, 21 Mar 1998 18:00:38 +0000 (18:00 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 21 Mar 1998 18:00:38 +0000 (18:00 +0000)
(Fcompose_string): Likewise.

src/charset.c

index af8a2490dafefddc078213e1aaa4e8c717a0d54c..acc24a29e25f8287ea654d35ca66296a7f06c0f8 100644 (file)
@@ -1149,7 +1149,7 @@ DEFUN ("string", Fstring, Sstring, 1, MANY, 0,
       p += len;
     }
 
-  val = make_multibyte_string (buf, n, p - buf);
+  val = make_string_from_bytes (buf, n, p - buf);
   return val;
 }
 
@@ -1565,7 +1565,7 @@ DEFUN ("compose-string", Fcompose_string, Scompose_string,
     /* STR contains only one character, which can't be composed.  */
     error ("Too short string to be composed: %s", XSTRING (str)->data);
 
-  return make_multibyte_string (buf, 1, i);
+  return make_string_from_bytes (buf, 1, i);
 }
 
 \f