aboutsummaryrefslogtreecommitdiffstats
path: root/src/charset.c
diff options
context:
space:
mode:
authorKen Raeburn2000-04-08 19:39:03 +0000
committerKen Raeburn2000-04-08 19:39:03 +0000
commit87f673176c5c159a62833ea4df659da2e1cd10fe (patch)
treeb19c5d755a4544cc1bb0d8711b3b8cb134218572 /src/charset.c
parente8413c3b81513e549851fab9256e0bd2e02ea4cc (diff)
downloademacs-87f673176c5c159a62833ea4df659da2e1cd10fe.tar.gz
emacs-87f673176c5c159a62833ea4df659da2e1cd10fe.zip
* charset.c (Fmake_char_internal): CHAR_COMPONENTS_VALID_P takes a
charset id (int) argument, not a charset (Lisp_Object).
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));