changeset 89217:d0650cc0038f

(Finsert_byte): Return a proper value.
author Dave Love <fx@gnu.org>
date Tue, 15 Oct 2002 13:01:50 +0000
parents 6db507e76b10
children 00d976320a16
files src/editfns.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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);
 }