aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2002-10-15 13:01:50 +0000
committerDave Love2002-10-15 13:01:50 +0000
commited398b0afcdc9a7e1467d7e4afa6f4e06c6d65c3 (patch)
treed3992acd0ea4529a3757fcc2c84d9f89919227f7 /src
parent6252b7ae691754055ecff3168f63282f6ac83c14 (diff)
downloademacs-ed398b0afcdc9a7e1467d7e4afa6f4e06c6d65c3.tar.gz
emacs-ed398b0afcdc9a7e1467d7e4afa6f4e06c6d65c3.zip
(Finsert_byte): Return a proper value.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c2
1 files changed, 1 insertions, 1 deletions
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. */)
2178 if (XINT (byte) >= 128 2178 if (XINT (byte) >= 128
2179 && ! NILP (current_buffer->enable_multibyte_characters)) 2179 && ! NILP (current_buffer->enable_multibyte_characters))
2180 XSETFASTINT (byte, BYTE8_TO_CHAR (XINT (byte))); 2180 XSETFASTINT (byte, BYTE8_TO_CHAR (XINT (byte)));
2181 Finsert_char (byte, count, inherit); 2181 return Finsert_char (byte, count, inherit);
2182} 2182}
2183 2183
2184 2184