From f7582f9807d9a10fba86f54c4aeaa7444c51a315 Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Tue, 23 Sep 2014 21:39:29 -0400 Subject: [PATCH] Fix ungetc for characters 0x80 <= c < 0xf0 in UTF-8. Fixes . * libguile/ports.c (scm_ungetc_unlocked): Fix bad UTF-8 reencoding, introduced in commit be7ecef05c1eea66f30360f658c610710c5cb22e. Signed-off-by: David Kastrup --- libguile/ports.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/ports.c b/libguile/ports.c index 8185d8593..3129282f7 100644 --- a/libguile/ports.c +++ b/libguile/ports.c @@ -2139,7 +2139,7 @@ scm_ungetc_unlocked (scm_t_wchar c, SCM port) if (pti->encoding_mode == SCM_PORT_ENCODING_MODE_UTF8) { - if (c < 0xf0) + if (c < 0x80) { result_buf[0] = (char) c; result = result_buf;