diff options
author | Ken Raeburn <raeburn@raeburn.org> | 2000-04-08 19:39:03 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@raeburn.org> | 2000-04-08 19:39:03 +0000 |
commit | 87f673176c5c159a62833ea4df659da2e1cd10fe (patch) | |
tree | b19c5d755a4544cc1bb0d8711b3b8cb134218572 /src/charset.c | |
parent | e8413c3b81513e549851fab9256e0bd2e02ea4cc (diff) | |
download | emacs-87f673176c5c159a62833ea4df659da2e1cd10fe.tar.gz |
* 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.c | 4 |
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, if (c1 == 0 ? c2 != 0 : (c2 == 0 - ? !CHAR_COMPONENTS_VALID_P (charset, c1, 0x20) - : !CHAR_COMPONENTS_VALID_P (charset, c1, c2))) + ? !CHAR_COMPONENTS_VALID_P (charset_id, c1, 0x20) + : !CHAR_COMPONENTS_VALID_P (charset_id, c1, c2))) error ("Invalid code points for charset ID %d: %d %d", charset_id, c1, c2); return make_number (MAKE_CHAR (charset_id, c1, c2)); |