emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/coding.h


From: Kenichi Handa
Subject: [Emacs-diffs] Changes to emacs/src/coding.h
Date: Thu, 18 May 2006 02:17:39 +0000

Index: emacs/src/coding.h
diff -u emacs/src/coding.h:1.78 emacs/src/coding.h:1.79
--- emacs/src/coding.h:1.78     Mon May  8 05:24:53 2006
+++ emacs/src/coding.h  Thu May 18 02:17:39 2006
@@ -443,10 +443,12 @@
   Lisp_Object translation_table_for_encode;
 };
 
-#define CODING_REQUIRE_FLUSHING_MASK   1
-#define CODING_REQUIRE_DECODING_MASK   2
-#define CODING_REQUIRE_ENCODING_MASK   4
-#define CODING_REQUIRE_DETECTION_MASK  8
+/* Mask bits for (struct coding_system *)->common_flags.  */
+#define CODING_REQUIRE_FLUSHING_MASK   0x01
+#define CODING_REQUIRE_DECODING_MASK   0x02
+#define CODING_REQUIRE_ENCODING_MASK   0x04
+#define CODING_REQUIRE_DETECTION_MASK  0x08
+#define CODING_ASCII_INCOMPATIBLE_MASK 0x10
 
 /* Return 1 if the coding system CODING requires specific code to be
    attached at the tail of converted text.  */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]