emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r102017: emacs-mime.texi (Flowed text


From: Katsumi Yamaoka
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r102017: emacs-mime.texi (Flowed text): Add a note about mml-enable-flowed variable.
Date: Wed, 20 Oct 2010 10:31:10 +0000
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 102017
author: Gnus developers
committer: Katsumi Yamaoka <address@hidden>
branch nick: trunk
timestamp: Wed 2010-10-20 10:31:10 +0000
message:
  emacs-mime.texi (Flowed text): Add a note about mml-enable-flowed variable.
  gnus/ChangeLog (2010-10-15): Fix typo in changelog.
  gnus-draft.el (gnus-draft-check-draft-articles): Don't unnecessarily run 
file-truename on remote files when checking drafts.
modified:
  doc/misc/ChangeLog
  doc/misc/emacs-mime.texi
  lisp/gnus/ChangeLog
  lisp/gnus/gnus-draft.el
=== modified file 'doc/misc/ChangeLog'
--- a/doc/misc/ChangeLog        2010-10-19 23:06:50 +0000
+++ b/doc/misc/ChangeLog        2010-10-20 10:31:10 +0000
@@ -1,3 +1,8 @@
+2010-10-20  Julien Danjou  <address@hidden>
+
+       * emacs-mime.texi (Flowed text): Add a note about mml-enable-flowed
+       variable.
+
 2010-10-19  Lars Magne Ingebrigtsen  <address@hidden>
 
        * gnus.texi (Customizing the IMAP Connection): The port strings are

=== modified file 'doc/misc/emacs-mime.texi'
--- a/doc/misc/emacs-mime.texi  2010-10-04 00:17:16 +0000
+++ b/doc/misc/emacs-mime.texi  2010-10-20 10:31:10 +0000
@@ -1040,6 +1040,10 @@
 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

=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog       2010-10-20 07:31:25 +0000
+++ b/lisp/gnus/ChangeLog       2010-10-20 10:31:10 +0000
@@ -1,3 +1,10 @@
+2010-10-20  Andreas Seltenreich  <address@hidden>
+
+       * 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  <address@hidden>
 
        * shr.el (shr-find-fill-point): Shorten line if the preceding char is
@@ -109,8 +116,8 @@
 
 2010-10-15  Julien Danjou  <address@hidden>
 
-       * 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  <address@hidden>
 

=== modified file 'lisp/gnus/gnus-draft.el'
--- a/lisp/gnus/gnus-draft.el   2010-09-02 00:55:51 +0000
+++ b/lisp/gnus/gnus-draft.el   2010-10-20 10:31:10 +0000
@@ -310,6 +310,8 @@
          (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))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]