diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 85c1e7883a6..1737ce35703 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog @@ -1,3 +1,8 @@ +2010-10-20 Julien Danjou + + * emacs-mime.texi (Flowed text): Add a note about mml-enable-flowed + variable. + 2010-10-19 Lars Magne Ingebrigtsen * gnus.texi (Customizing the IMAP Connection): The port strings are diff --git a/doc/misc/emacs-mime.texi b/doc/misc/emacs-mime.texi index 475ce2bb53f..9511f6d10c0 100644 --- a/doc/misc/emacs-mime.texi +++ b/doc/misc/emacs-mime.texi @@ -1040,6 +1040,10 @@ flowed text, the default is to wrap after 66 characters. If hard newline characters are not present in the buffer, no flow encoding occurs. +You can customize the value of the @code{mml-enable-flowed} variable +to enable or disable the flowed encoding usage when newline +characteres are present in the buffer. + On decoding flowed text, lines with soft newline characters are filled together and wrapped after the column decided by @code{fill-flowed-display-column}. The default is to wrap after diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 11244224452..c72cbf45587 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,10 @@ +2010-10-20 Andreas Seltenreich + + * gnus-draft.el (gnus-draft-check-draft-articles): Don't unnecessarily + run file-truename on remote files. This can be expensive and even + prevent one from editing drafts if some unrelated buffer has a stale + connection. + 2010-10-20 Katsumi Yamaoka * shr.el (shr-find-fill-point): Shorten line if the preceding char is @@ -109,8 +116,8 @@ 2010-10-15 Julien Danjou - * mml.el (mml-generate-mime-1): Add `mml-enable-flow' variable to add a - possibility to disable format=flow encoding when using hard newlines. + * mml.el (mml-generate-mime-1): Add `mml-enable-flowed' variable to add + a possibility to disable format=flow encoding when using hard newlines. 2010-10-15 Katsumi Yamaoka diff --git a/lisp/gnus/gnus-draft.el b/lisp/gnus/gnus-draft.el index d53873045fd..e397a701da8 100644 --- a/lisp/gnus/gnus-draft.el +++ b/lisp/gnus/gnus-draft.el @@ -310,6 +310,8 @@ Obeys the standard process/prefix convention." (while buffs (set-buffer (setq buff (pop buffs))) (if (and buffer-file-name + (equal (file-remote-p file) + (file-remote-p buffer-file-name)) (string-equal (file-truename buffer-file-name) (file-truename file)) (buffer-modified-p))