From: tomo Date: Thu, 27 Apr 2000 04:41:54 +0000 (+0000) Subject: (struct Lisp_Coding_System): Add `disable_composition'; delete X-Git-Tag: r21-2-27-utf-2000-0_15-0~12 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=34734d3dba3892901f2c0fd8ab672673e3a92238;p=chise%2Fxemacs-chise.git.1 (struct Lisp_Coding_System): Add `disable_composition'; delete `enable_composition'. (CODING_SYSTEM_DISABLE_COMPOSITION): New macro; delete `CODING_SYSTEM_COMPOSITE'. (XCODING_SYSTEM_DISABLE_COMPOSITION): New macro; delete `XCODING_SYSTEM_COMPOSITE'. --- diff --git a/src/file-coding.h b/src/file-coding.h index 9a7bb5e..4caf414 100644 --- a/src/file-coding.h +++ b/src/file-coding.h @@ -134,7 +134,7 @@ struct Lisp_Coding_System } ccl; #endif #ifdef UTF2000 - char enable_composition; + char disable_composition; #endif }; typedef struct Lisp_Coding_System Lisp_Coding_System; @@ -180,7 +180,8 @@ DECLARE_LRECORD (coding_system, struct Lisp_Coding_System); #define CODING_SYSTEM_CCL_ENCODE(codesys) ((codesys)->ccl.encode) #endif /* MULE */ #ifdef UTF2000 -#define CODING_SYSTEM_COMPOSITE(codesys) ((codesys)->enable_composition) +#define CODING_SYSTEM_DISABLE_COMPOSITION(codesys) \ + ((codesys)->disable_composition) #endif #define XCODING_SYSTEM_NAME(codesys) \ @@ -229,8 +230,8 @@ DECLARE_LRECORD (coding_system, struct Lisp_Coding_System); CODING_SYSTEM_CCL_ENCODE (XCODING_SYSTEM (codesys)) #endif /* MULE */ #ifdef UTF2000 -#define XCODING_SYSTEM_COMPOSITE(codesys) \ - CODING_SYSTEM_COMPOSITE (XCODING_SYSTEM (codesys)) +#define XCODING_SYSTEM_DISABLE_COMPOSITION(codesys) \ + CODING_SYSTEM_DISABLE_COMPOSITION (XCODING_SYSTEM (codesys)) #endif EXFUN (Fcoding_category_list, 0);