]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fsend_string_to_terminal): Use size_byte.
authorRichard M. Stallman <rms@gnu.org>
Fri, 9 Jan 1998 23:07:47 +0000 (23:07 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 9 Jan 1998 23:07:47 +0000 (23:07 +0000)
src/dispnew.c

index a7441b990d6cecdfd427d0267bfe8f53c068d70a..8b4709acea5df348a02c1528dfd56d4ea1faa454 100644 (file)
@@ -2249,12 +2249,13 @@ Control characters in STRING will have terminal-dependent effects.")
   (string)
      Lisp_Object string;
 {
+  /* ??? Perhaps we should do something special for multibyte strings here.  */
   CHECK_STRING (string, 0);
-  fwrite (XSTRING (string)->data, 1, XSTRING (string)->size, stdout);
+  fwrite (XSTRING (string)->data, 1, XSTRING (string)->size_byte, stdout);
   fflush (stdout);
   if (termscript)
     {
-      fwrite (XSTRING (string)->data, 1, XSTRING (string)->size, termscript);
+      fwrite (XSTRING (string)->data, 1, XSTRING (string)->size_byte, termscript);
       fflush (termscript);
     }
   return Qnil;