Mercurial > hg > xemacs-beta
diff src/mule-ccl.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 | 023b83f4e54b |
line wrap: on
line diff
--- a/src/mule-ccl.c Thu May 24 09:37:30 2001 +0000 +++ b/src/mule-ccl.c Thu May 24 09:53:18 2001 +0000 @@ -41,6 +41,8 @@ #endif /* not emacs */ +Lisp_Object Qccl_error; + /* This contains all code conversion map available to CCL. */ Lisp_Object Vcode_conversion_map_vector; @@ -2228,6 +2230,8 @@ void syms_of_mule_ccl (void) { + DEFERROR_STANDARD (Qccl_error, Qconversion_error); + DEFSUBR (Fccl_program_p); DEFSUBR (Fccl_execute); DEFSUBR (Fccl_execute_on_string);