From: Dave Love Date: Tue, 15 Oct 2002 13:01:50 +0000 (+0000) Subject: (Finsert_byte): Return a proper value. X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~236 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ed398b0afcdc9a7e1467d7e4afa6f4e06c6d65c3;p=emacs.git (Finsert_byte): Return a proper value. --- diff --git a/src/editfns.c b/src/editfns.c index 345045d141b..d4fd545d0c3 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -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); }