Mercurial > hg > xemacs-beta
comparison src/mule-charset.c @ 565:e9162e1ea200
[xemacs-hg @ 2001-05-24 09:53:05 by yoshiki]
Fix build on Linux with MULE.
* mule-ccl.c (Qccl_error): New error
* mule-ccl.c (syms_of_mule_ccl): Initialize Qccl_error.
* mule-charset.c (Fmake_charset): Call signal_error.
author | yoshiki |
---|---|
date | Thu, 24 May 2001 09:53:18 +0000 |
parents | 183866b06e0b |
children | 190b164ddcac |
comparison
equal
deleted
inserted
replaced
564:001628b7a5b3 | 565:e9162e1ea200 |
---|---|
782 else | 782 else |
783 type = (chars == 94) ? CHARSET_TYPE_94X94 : CHARSET_TYPE_96X96; | 783 type = (chars == 94) ? CHARSET_TYPE_94X94 : CHARSET_TYPE_96X96; |
784 | 784 |
785 if (!NILP (CHARSET_BY_ATTRIBUTES (type, final, CHARSET_LEFT_TO_RIGHT)) || | 785 if (!NILP (CHARSET_BY_ATTRIBUTES (type, final, CHARSET_LEFT_TO_RIGHT)) || |
786 !NILP (CHARSET_BY_ATTRIBUTES (type, final, CHARSET_RIGHT_TO_LEFT))) | 786 !NILP (CHARSET_BY_ATTRIBUTES (type, final, CHARSET_RIGHT_TO_LEFT))) |
787 error | 787 signal_error |
788 ("Character set already defined for this DIMENSION/CHARS/FINAL combo"); | 788 (Qerror, |
789 "Character set already defined for this DIMENSION/CHARS/FINAL combo", | |
790 Qunbound); | |
789 | 791 |
790 id = get_unallocated_leading_byte (dimension); | 792 id = get_unallocated_leading_byte (dimension); |
791 | 793 |
792 if (NILP (doc_string)) | 794 if (NILP (doc_string)) |
793 doc_string = build_string (""); | 795 doc_string = build_string (""); |