# HG changeset patch # User Dave Love # Date 1034686910 0 # Node ID d0650cc0038f027c39d8a054c5ef00609f364897 # Parent 6db507e76b105c88e51c08e1c3718c655aa7dbca (Finsert_byte): Return a proper value. diff -r 6db507e76b10 -r d0650cc0038f src/editfns.c --- 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); }