]> git.eshelyaron.com Git - emacs.git/commitdiff
(Finsert_byte): Return a proper value.
authorDave Love <fx@gnu.org>
Tue, 15 Oct 2002 13:01:50 +0000 (13:01 +0000)
committerDave Love <fx@gnu.org>
Tue, 15 Oct 2002 13:01:50 +0000 (13:01 +0000)
src/editfns.c

index 345045d141b9cfb21fcf9e18e8fc429328ff2fb8..d4fd545d0c3f48876553f9e21c246d9cf33e2e3c 100644 (file)
@@ -2178,7 +2178,7 @@ from adjoining text, if those properties are sticky.  */)
   if (XINT (byte) >= 128
       && ! NILP (current_buffer->enable_multibyte_characters))
     XSETFASTINT (byte, BYTE8_TO_CHAR (XINT (byte)));
-  Finsert_char (byte, count, inherit);
+  return Finsert_char (byte, count, inherit);
 }
 
 \f