diff options
author | Bruno Haible <bruno@clisp.org> | 2001-03-22 13:14:05 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2001-03-22 13:14:05 +0000 |
commit | 54390368852671355d1346bd31443b4fce1ab7d7 (patch) | |
tree | 06512eb9f99a1502713b89a71254c57acc6a28ba | |
parent | 5c42ae7b27b0d5f52714ed25a530d3afec4dbba1 (diff) | |
download | external_gettext-54390368852671355d1346bd31443b4fce1ab7d7.zip external_gettext-54390368852671355d1346bd31443b4fce1ab7d7.tar.gz external_gettext-54390368852671355d1346bd31443b4fce1ab7d7.tar.bz2 |
The MIME encoding is always 8-bit.
-rw-r--r-- | misc/ChangeLog | 4 | ||||
-rw-r--r-- | misc/po-mode.el | 2 | ||||
-rw-r--r-- | src/ChangeLog | 4 | ||||
-rw-r--r-- | src/xgettext.c | 2 |
4 files changed, 10 insertions, 2 deletions
diff --git a/misc/ChangeLog b/misc/ChangeLog index d6bb221..2939584 100644 --- a/misc/ChangeLog +++ b/misc/ChangeLog @@ -1,3 +1,7 @@ +2001-03-22 Bruno Haible <haible@clisp.cons.org> + + * po-mode.el (po-default-file-header): Replace ENCODING with 8-bit. + 2001-03-21 Bruno Haible <haible@clisp.cons.org> * gettextize.in: Mention where to get config.guess and config.sub. diff --git a/misc/po-mode.el b/misc/po-mode.el index 07c8ab7..8094c15 100644 --- a/misc/po-mode.el +++ b/misc/po-mode.el @@ -309,7 +309,7 @@ msgstr \"\" \"Language-Team: LANGUAGE <LL@li.org>\\n\" \"MIME-Version: 1.0\\n\" \"Content-Type: text/plain; charset=CHARSET\\n\" -\"Content-Transfer-Encoding: ENCODING\\n\" +\"Content-Transfer-Encoding: 8-bit\\n\" " "*Default PO file header." :type 'string diff --git a/src/ChangeLog b/src/ChangeLog index 35affe0..6ba2467 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2001-03-22 Bruno Haible <haible@clisp.cons.org> + + * xgettext.c (construct_header): Replace ENCODING with 8-bit. + 2001-03-20 Bruno Haible <haible@clisp.cons.org> * po.c (po_callback_message): Change message, refer to GNU libiconv. diff --git a/src/xgettext.c b/src/xgettext.c index 5bf5897..cdfe29f 100644 --- a/src/xgettext.c +++ b/src/xgettext.c @@ -1353,7 +1353,7 @@ Last-Translator: FULL NAME <EMAIL@ADDRESS>\n\ Language-Team: LANGUAGE <LL@li.org>\n\ MIME-Version: 1.0\n\ Content-Type: text/plain; charset=CHARSET\n\ -Content-Transfer-Encoding: ENCODING\n", +Content-Transfer-Encoding: 8-bit\n", local_time.tm_year + TM_YEAR_ORIGIN, local_time.tm_mon + 1, local_time.tm_mday, |