diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/editfns.c | 2 |
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 | ||