emacs-devel
[Top][All Lists]
Advanced

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

Re: Emacs 24.4 freeze and very minor MH-E update


From: Bill Wohler
Subject: Re: Emacs 24.4 freeze and very minor MH-E update
Date: Sun, 23 Feb 2014 18:12:58 -0800

Stefan Monnier <address@hidden> wrote:

> > Shall I merge the changes into trunk now, or shall I wait until 24.4 is
> > released?
> 
> What kind of changes are we talking about?

The diffs are small enough to include here.

The only code-related change fixes a problem with GNU Mailutils.

=== modified file 'lisp/mh-e/ChangeLog'
--- lisp/mh-e/ChangeLog 2014-01-26 00:47:40 +0000
+++ lisp/mh-e/ChangeLog 2014-02-24 02:10:09 +0000
@@ -1,3 +1,8 @@
+2014-02-24  Bill Wohler  <address@hidden>
+
+       * mh-folder.el (mh-regenerate-headers): Fix scan: bad message list
+       `unseen' error (closes SF #471).
+
 2013-11-05  Stefan Monnier  <address@hidden>
 
        * mh-print.el (mh-ps-print-preprint): Don't use dynamic-var
@@ -26,6 +31,10 @@
 
        * mh-comp.el (mh-regexp-in-field-p): Minor simplification.
 
+2013-03-03  Bill Wohler  <address@hidden>
+
+       * mh-e.el (mh-version): Add +bzr to version.
+
 2013-03-02  Bill Wohler  <address@hidden>
 
        Release MH-E version 8.5.

=== modified file 'lisp/mh-e/mh-e.el'
--- lisp/mh-e/mh-e.el   2014-01-01 07:43:34 +0000
+++ lisp/mh-e/mh-e.el   2014-02-24 02:10:09 +0000
@@ -5,7 +5,7 @@
 
 ;; Author: Bill Wohler <address@hidden>
 ;; Maintainer: Bill Wohler <address@hidden>
-;; Version: 8.5
+;; Version: 8.5+bzr
 ;; Keywords: mail
 
 ;; This file is part of GNU Emacs.
@@ -127,7 +127,7 @@
 ;; Try to keep variables local to a single file. Provide accessors if
 ;; variables are shared. Use this section as a last resort.
 
-(defconst mh-version "8.5" "Version number of MH-E.")
+(defconst mh-version "8.5+bzr" "Version number of MH-E.")
 
 ;; Variants
 

=== modified file 'lisp/mh-e/mh-folder.el'
--- lisp/mh-e/mh-folder.el      2014-01-01 07:43:34 +0000
+++ lisp/mh-e/mh-folder.el      2014-02-24 02:10:09 +0000
@@ -1817,15 +1817,13 @@
              "-width" (window-width)
              folder range)
       (goto-char scan-start)
-      (cond ((looking-at "scan: no messages in")
-             (keep-lines mh-scan-valid-regexp)) ; Flush random scan lines
-            ((looking-at (if (mh-variant-p 'gnu-mh)
-                             "scan: message set .* does not exist"
-                           "scan: bad message list "))
-             (keep-lines mh-scan-valid-regexp))
-            ((looking-at "scan: "))     ; Keep error messages
+      (cond ((or (looking-at "scan: no messages in")
+                 (looking-at "scan: message set .* does not exist")
+                 (looking-at "scan: bad message list "))
+             (keep-lines mh-scan-valid-regexp)) ; flush common scan output
+            ((looking-at "scan: "))             ; keep unexpected error 
messages
             (t
-             (keep-lines mh-scan-valid-regexp))) ; Flush random scan lines
+             (keep-lines mh-scan-valid-regexp))) ; flush random scan output
       (setq mh-seq-list (mh-read-folder-sequences folder nil))
       (mh-notate-user-sequences)
       (or update

=== modified file 'lisp/mh-e/mh-thread.el'
--- lisp/mh-e/mh-thread.el      2014-01-01 07:43:34 +0000
+++ lisp/mh-e/mh-thread.el      2014-02-24 02:10:09 +0000
@@ -27,9 +27,11 @@
 ;; The threading portion of this files tries to implement the
 ;; algorithm described at:
 ;;   http://www.jwz.org/doc/threading.html
-;; It also begins to implement the IMAP Threading extension RFC. The
-;; implementation lacks the reference and subject canonicalization of
-;; the RFC.
+;; It also begins to implement the threading section of the IMAP -
+;; SORT and THREAD Extensions RFC at:
+;;   http://tools.ietf.org/html/rfc5256
+;; The implementation lacks the reference and subject canonicalization
+;; of the RFC.
 
 ;; In the presentation buffer, children messages are shown indented
 ;; with either [ ] or < > around them. Square brackets ([ ]) denote


> 
> 
>         Stefan
> 
> ------------------------------------------------------------------------------
> Android apps run on BlackBerry 10
> Introducing the new BlackBerry 10.2.1 Runtime for Android apps.
> Now with support for Jelly Bean, Bluetooth, Mapview and more.
> Get your Android app in front of a whole new audience.  Start now.
> http://pubads.g.doubleclick.net/gampad/clk?id=124407151&iu=/4140/ostg.clktrk
> _______________________________________________
> mh-e-devel mailing list
> address@hidden
> https://lists.sourceforge.net/lists/listinfo/mh-e-devel
> 

-- 
Bill Wohler <address@hidden> aka <address@hidden>
http://www.newt.com/wohler/
GnuPG ID:610BD9AD



reply via email to

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