From 61fc6e604d76780698e2d72c820bfecae0cdfff6 Mon Sep 17 00:00:00 2001 From: Bill Wohler Date: Sat, 2 Mar 2013 17:25:49 -0800 Subject: * mh-e.el (mh-version): Add +bzr to version. --- lisp/mh-e/ChangeLog | 4 ++++ lisp/mh-e/mh-e.el | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'lisp/mh-e') diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index ee95f8051a8..301576aa9d1 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog @@ -1,3 +1,7 @@ +2013-03-03 Bill Wohler + + * mh-e.el (mh-version): Add +bzr to version. + 2013-03-02 Bill Wohler Release MH-E version 8.5. diff --git a/lisp/mh-e/mh-e.el b/lisp/mh-e/mh-e.el index 6ed033b8fa8..0c134e8544a 100644 --- a/lisp/mh-e/mh-e.el +++ b/lisp/mh-e/mh-e.el @@ -5,7 +5,7 @@ ;; Author: Bill Wohler ;; Maintainer: Bill Wohler -;; 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 -- cgit v1.2.1 From fa553684403ea3f95ec88e544464f07481059d05 Mon Sep 17 00:00:00 2001 From: Bill Wohler Date: Mon, 8 Apr 2013 20:13:20 -0700 Subject: Update reference for threading RFC. --- lisp/mh-e/mh-thread.el | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'lisp/mh-e') diff --git a/lisp/mh-e/mh-thread.el b/lisp/mh-e/mh-thread.el index d80e9f3ae53..fc0925f1260 100644 --- a/lisp/mh-e/mh-thread.el +++ b/lisp/mh-e/mh-thread.el @@ -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 -- cgit v1.2.1 From 791c0d7634e44bb92ca85af605be84ff2ae08963 Mon Sep 17 00:00:00 2001 From: Bill Wohler Date: Sun, 23 Feb 2014 17:55:39 -0800 Subject: * mh-folder.el (mh-regenerate-headers): Fix scan: bad message list `unseen' error (closes SF #471). --- lisp/mh-e/ChangeLog | 5 +++++ lisp/mh-e/mh-folder.el | 14 ++++++-------- 2 files changed, 11 insertions(+), 8 deletions(-) (limited to 'lisp/mh-e') diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index 301576aa9d1..74cab4443da 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog @@ -1,3 +1,8 @@ +2014-02-24 Bill Wohler + + * mh-folder.el (mh-regenerate-headers): Fix scan: bad message list + `unseen' error (closes SF #471). + 2013-03-03 Bill Wohler * mh-e.el (mh-version): Add +bzr to version. diff --git a/lisp/mh-e/mh-folder.el b/lisp/mh-e/mh-folder.el index 01f304a38dc..599baf3326f 100644 --- a/lisp/mh-e/mh-folder.el +++ b/lisp/mh-e/mh-folder.el @@ -1817,15 +1817,13 @@ If UPDATE, append the scan lines, otherwise replace." "-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 -- cgit v1.2.1