From ed398b0afcdc9a7e1467d7e4afa6f4e06c6d65c3 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Tue, 15 Oct 2002 13:01:50 +0000 Subject: [PATCH] (Finsert_byte): Return a proper value. --- src/editfns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.2