diff options
| author | Karoly Lorentey | 2006-05-24 09:13:31 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2006-05-24 09:13:31 +0000 |
| commit | 40a1b46245c1a8786324f5a06d6cb8d4bd9d5b74 (patch) | |
| tree | f45020695e190f511f4faf4dd3ed144059f298c0 /src/coding.h | |
| parent | dbe9f5ba9648890dc34f4836a49fde766b21ce74 (diff) | |
| parent | 4ea5193b9cc5c577127ca6c89ecfaad819398d3b (diff) | |
| download | emacs-40a1b46245c1a8786324f5a06d6cb8d4bd9d5b74.tar.gz emacs-40a1b46245c1a8786324f5a06d6cb8d4bd9d5b74.zip | |
Merged from emacs@sv.gnu.org
Patches applied:
* emacs@sv.gnu.org/emacs--devo--0--patch-289
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-290
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-291
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-292
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-293
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-567
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 be68753acb2..81dcb7f08ad 100644 --- a/src/coding.h +++ b/src/coding.h | |||
| @@ -462,7 +462,10 @@ struct coding_system | |||
| 462 | || (coding)->common_flags & CODING_REQUIRE_DECODING_MASK) | 462 | || (coding)->common_flags & CODING_REQUIRE_DECODING_MASK) |
| 463 | 463 | ||
| 464 | /* Return 1 if the coding system CODING requires code conversion on | 464 | /* Return 1 if the coding system CODING requires code conversion on |
| 465 | encoding. */ | 465 | encoding. |
| 466 | The non-multibyte part of the condition is to support encoding of | ||
| 467 | unibyte strings/buffers generated by string-as-unibyte or | ||
| 468 | (set-buffer-multibyte nil) from multibyte strings/buffers. */ | ||
| 466 | #define CODING_REQUIRE_ENCODING(coding) \ | 469 | #define CODING_REQUIRE_ENCODING(coding) \ |
| 467 | ((coding)->src_multibyte \ | 470 | ((coding)->src_multibyte \ |
| 468 | || (coding)->common_flags & CODING_REQUIRE_ENCODING_MASK) | 471 | || (coding)->common_flags & CODING_REQUIRE_ENCODING_MASK) |