diff options
| author | Kenichi Handa | 2006-06-08 06:48:23 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2006-06-08 06:48:23 +0000 |
| commit | c198294fdd8970e5a87fd278d949e41832a0012c (patch) | |
| tree | 4e4eae415cb53e7d2239514801636e5aeffae9df /src/coding.h | |
| parent | ff56ba1f4fa5b785ed6d845f89934dde0e036c32 (diff) | |
| download | emacs-c198294fdd8970e5a87fd278d949e41832a0012c.tar.gz emacs-c198294fdd8970e5a87fd278d949e41832a0012c.zip | |
(CODING_REQUIRE_ENCODING): Comment sync with HEAD.
Diffstat (limited to 'src/coding.h')
| -rw-r--r-- | src/coding.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/coding.h b/src/coding.h index 41f4aab509c..93375d2c2eb 100644 --- a/src/coding.h +++ b/src/coding.h | |||
| @@ -489,7 +489,10 @@ struct coding_system | |||
| 489 | 489 | ||
| 490 | 490 | ||
| 491 | /* Return 1 if the coding context CODING requires code conversion on | 491 | /* Return 1 if the coding context CODING requires code conversion on |
| 492 | encoding. */ | 492 | encoding. |
| 493 | The non-multibyte part of the condition is to support encoding of | ||
| 494 | unibyte strings/buffers generated by string-as-unibyte or | ||
| 495 | (set-buffer-multibyte nil) from multibyte strings/buffers. */ | ||
| 493 | #define CODING_REQUIRE_ENCODING(coding) \ | 496 | #define CODING_REQUIRE_ENCODING(coding) \ |
| 494 | ((coding)->src_multibyte \ | 497 | ((coding)->src_multibyte \ |
| 495 | || (coding)->common_flags & CODING_REQUIRE_ENCODING_MASK \ | 498 | || (coding)->common_flags & CODING_REQUIRE_ENCODING_MASK \ |