aboutsummaryrefslogtreecommitdiffstats
path: root/src/charset.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/charset.c')
-rw-r--r--src/charset.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/charset.c b/src/charset.c
index c040134f1bb..52ba5f28c5f 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -961,8 +961,8 @@ DEFUN ("make-char-internal", Fmake_char_internal, Smake_char_internal, 1, 3, 0,
961 if (c1 == 0 961 if (c1 == 0
962 ? c2 != 0 962 ? c2 != 0
963 : (c2 == 0 963 : (c2 == 0
964 ? !CHAR_COMPONENTS_VALID_P (charset, c1, 0x20) 964 ? !CHAR_COMPONENTS_VALID_P (charset_id, c1, 0x20)
965 : !CHAR_COMPONENTS_VALID_P (charset, c1, c2))) 965 : !CHAR_COMPONENTS_VALID_P (charset_id, c1, c2)))
966 error ("Invalid code points for charset ID %d: %d %d", charset_id, c1, c2); 966 error ("Invalid code points for charset ID %d: %d %d", charset_id, c1, c2);
967 967
968 return make_number (MAKE_CHAR (charset_id, c1, c2)); 968 return make_number (MAKE_CHAR (charset_id, c1, c2));