]> git.eshelyaron.com Git - emacs.git/commitdiff
(selection_data_to_lisp_data): Use make_string_from_bytes.
authorRichard M. Stallman <rms@gnu.org>
Sat, 21 Mar 1998 17:49:39 +0000 (17:49 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 21 Mar 1998 17:49:39 +0000 (17:49 +0000)
src/xselect.c

index 475a2fdd1d7c158b8b9b6e2771d4762b3801daf3..5eb7d432158f0e8eb45ad6c95ca62e603ae7d16c 100644 (file)
@@ -1506,8 +1506,8 @@ selection_data_to_lisp_data (display, data, size, type, format)
          bufsize = decoding_buffer_size (&coding, size);
          buf = (unsigned char *) xmalloc (bufsize);
          decode_coding (&coding, data, buf, size, bufsize);
-         str = make_multibyte_string ((char *) buf,
-                                      coding.produced_char, coding.produced);
+         str = make_string_from_bytes ((char *) buf,
+                                       coding.produced_char, coding.produced);
          xfree (buf);
        }
       return str;