diff options
| author | Gerd Moellmann | 2000-03-08 14:49:11 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-03-08 14:49:11 +0000 |
| commit | feab4fba81af27338b443210f8931ae1ff9c976a (patch) | |
| tree | 33fdb0fb73125893d6237e56746e6325339e7a87 | |
| parent | 08ac8554879dbb254972cc7e40e0ec62d807a533 (diff) | |
| download | emacs-feab4fba81af27338b443210f8931ae1ff9c976a.tar.gz emacs-feab4fba81af27338b443210f8931ae1ff9c976a.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 12 | ||||
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | src/ChangeLog | 2 |
3 files changed, 18 insertions, 0 deletions
| @@ -2806,6 +2806,18 @@ current codepage when it starts. | |||
| 2806 | 2806 | ||
| 2807 | ** Mail changes | 2807 | ** Mail changes |
| 2808 | 2808 | ||
| 2809 | *** When mail is sent using compose-mail (C-x m), and if | ||
| 2810 | `mail-send-nonascii' is set to the new default value `mime', | ||
| 2811 | appropriate MIME headers are added. The headers are added only if | ||
| 2812 | non-ASCII characters are present in the body of the mail, and no other | ||
| 2813 | MIME headers are already present. For example, the following three | ||
| 2814 | headers are added if the coding system used in the *mail* buffer is | ||
| 2815 | latin-1: | ||
| 2816 | |||
| 2817 | MIME-version: 1.0 | ||
| 2818 | Content-type: text/plain; charset=iso-8859-1 | ||
| 2819 | Content-Transfer-Encoding: 8bit | ||
| 2820 | |||
| 2809 | *** The new variable default-sendmail-coding-system specifies the | 2821 | *** The new variable default-sendmail-coding-system specifies the |
| 2810 | default way to encode outgoing mail. This has higher priority than | 2822 | default way to encode outgoing mail. This has higher priority than |
| 2811 | default-buffer-file-coding-system but has lower priority than | 2823 | default-buffer-file-coding-system but has lower priority than |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6969c305f7b..045b1b56401 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2000-03-08 Gerd Moellmann <gerd@gnu.org> | 1 | 2000-03-08 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * Makefile (compile-files): Compile files one by one because | ||
| 4 | that's the only way to ensure a clean compilation environment for | ||
| 5 | each individual file. | ||
| 6 | |||
| 3 | * frame.el (other-frame): Call x-focus-frame. | 7 | * frame.el (other-frame): Call x-focus-frame. |
| 4 | 8 | ||
| 5 | 2000-03-07 Dave Love <fx@gnu.org> | 9 | 2000-03-07 Dave Love <fx@gnu.org> |
diff --git a/src/ChangeLog b/src/ChangeLog index 1db6f3d7626..5e4608ae1bf 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2000-03-08 Gerd Moellmann <gerd@gnu.org> | 1 | 2000-03-08 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * xfns.c (x_set_cursor_type): If ARG is nil, give frame no cursor. | ||
| 4 | |||
| 3 | * xdisp.c (display_echo_area): Temporarily inhibit garbage | 5 | * xdisp.c (display_echo_area): Temporarily inhibit garbage |
| 4 | collection. | 6 | collection. |
| 5 | 7 | ||