emacs-devel
[Top][All Lists]
Advanced

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

[patch] Fix two bugs in rmailsum (RMAIL-MBOX branch)


From: Xavier Maillard
Subject: [patch] Fix two bugs in rmailsum (RMAIL-MBOX branch)
Date: Mon, 24 Apr 2006 19:52:58 +0200
User-agent: RMAIL/GNU Emacs 22.0.50.1

Hi,

I do not know if it is the right place to send this but at least it will be
archived here.

So here is a really mini-patch against rmailsum.el (the mbox branch one) that
caused several summay buffer command to fail execute.

Attached is also a changelog entry.

--- rmailsum.el.orig    2006-04-24 19:32:17.000000000 +0200
+++ rmailsum.el 2006-04-24 19:32:38.000000000 +0200
@@ -161,7 +161,7 @@
     (goto-char (point-min))
     (if whole-message
         (re-search-forward subject nil t)
-      (string-match subject (let ((subj (mail-header-get-header "Subject")))
+      (string-match subject (let ((subj (rmail-header-get-header "Subject")))
                              (if subj
                                  (funcall rmail-summary-line-decoder subj)
                                ""))))))
@@ -185,7 +185,7 @@
      (rmail-desc-get-start msg)
      (rmail-desc-get-end msg))
     (goto-char (point-mix))
-    (string-match senders (or (mail-header-get-header "From") ""))))
+    (string-match senders (or (rmail-header-get-header "From") ""))))
 
 ;;;; General making of a summary buffer.
 
2006-04-24  Xavier Maillard  <address@hidden>

        * rmailsum.el (rmail-message-senders-p,
                       rmail-message-subject-p): Changed mail-header-get-header 
to rmail-header-get-header.


Kind regards,
Xavier




reply via email to

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