From 34734d3dba3892901f2c0fd8ab672673e3a92238 Mon Sep 17 00:00:00 2001 From: tomo Date: Thu, 27 Apr 2000 04:41:54 +0000 Subject: [PATCH] (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'. --- src/file-coding.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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); -- 1.7.10.4