diff src/editfns.c @ 89217:d0650cc0038f

(Finsert_byte): Return a proper value.
author Dave Love <fx@gnu.org>
date Tue, 15 Oct 2002 13:01:50 +0000
parents 3903a3ae19cb
children 2f877ed80fa6
line wrap: on
line diff
--- a/src/editfns.c	Tue Oct 15 01:48:51 2002 +0000
+++ b/src/editfns.c	Tue Oct 15 13:01:50 2002 +0000
@@ -2178,7 +2178,7 @@
   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);
 }