aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.h
diff options
context:
space:
mode:
authorKaroly Lorentey2006-05-20 10:32:11 +0000
committerKaroly Lorentey2006-05-20 10:32:11 +0000
commitaabd1a8b138a7f5907c3bb0bbd40932fa7b8e9fe (patch)
tree7db1ed5481ec4ec6b43271d0ea57c032c22f60fc /src/coding.h
parent9f97e26d01003a17b861505d535c89ad73799b7e (diff)
parent689840b9224725a0beae741aaaa325d7edb2244c (diff)
downloademacs-aabd1a8b138a7f5907c3bb0bbd40932fa7b8e9fe.tar.gz
emacs-aabd1a8b138a7f5907c3bb0bbd40932fa7b8e9fe.zip
Merged from emacs@sv.gnu.org
Patches applied: * emacs@sv.gnu.org/emacs--devo--0--patch-285 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-286 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-287 Merge from gnus--rel--5.10 * emacs@sv.gnu.org/emacs--devo--0--patch-288 Update from CVS * emacs@sv.gnu.org/gnus--rel--5.10--patch-102 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-558
Diffstat (limited to 'src/coding.h')
-rw-r--r--src/coding.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/coding.h b/src/coding.h
index cac11d1514c..be68753acb2 100644
--- a/src/coding.h
+++ b/src/coding.h
@@ -443,10 +443,12 @@ struct coding_system
443 Lisp_Object translation_table_for_encode; 443 Lisp_Object translation_table_for_encode;
444}; 444};
445 445
446#define CODING_REQUIRE_FLUSHING_MASK 1 446/* Mask bits for (struct coding_system *)->common_flags. */
447#define CODING_REQUIRE_DECODING_MASK 2 447#define CODING_REQUIRE_FLUSHING_MASK 0x01
448#define CODING_REQUIRE_ENCODING_MASK 4 448#define CODING_REQUIRE_DECODING_MASK 0x02
449#define CODING_REQUIRE_DETECTION_MASK 8 449#define CODING_REQUIRE_ENCODING_MASK 0x04
450#define CODING_REQUIRE_DETECTION_MASK 0x08
451#define CODING_ASCII_INCOMPATIBLE_MASK 0x10
450 452
451/* Return 1 if the coding system CODING requires specific code to be 453/* Return 1 if the coding system CODING requires specific code to be
452 attached at the tail of converted text. */ 454 attached at the tail of converted text. */