1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-12 09:28:24 +00:00

*** empty log message ***

This commit is contained in:
Gerd Moellmann 2000-03-08 14:49:11 +00:00
parent 08ac855487
commit feab4fba81
3 changed files with 18 additions and 0 deletions

View File

@ -2806,6 +2806,18 @@ current codepage when it starts.
** Mail changes
*** When mail is sent using compose-mail (C-x m), and if
`mail-send-nonascii' is set to the new default value `mime',
appropriate MIME headers are added. The headers are added only if
non-ASCII characters are present in the body of the mail, and no other
MIME headers are already present. For example, the following three
headers are added if the coding system used in the *mail* buffer is
latin-1:
MIME-version: 1.0
Content-type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit
*** The new variable default-sendmail-coding-system specifies the
default way to encode outgoing mail. This has higher priority than
default-buffer-file-coding-system but has lower priority than

View File

@ -1,5 +1,9 @@
2000-03-08 Gerd Moellmann <gerd@gnu.org>
* Makefile (compile-files): Compile files one by one because
that's the only way to ensure a clean compilation environment for
each individual file.
* frame.el (other-frame): Call x-focus-frame.
2000-03-07 Dave Love <fx@gnu.org>

View File

@ -1,5 +1,7 @@
2000-03-08 Gerd Moellmann <gerd@gnu.org>
* xfns.c (x_set_cursor_type): If ARG is nil, give frame no cursor.
* xdisp.c (display_echo_area): Temporarily inhibit garbage
collection.