help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: After attempting Escape Control-s what does it mean when you get...


From: Eli Zaretskii
Subject: Re: After attempting Escape Control-s what does it mean when you get... You must set `rmail-search-mime-header-function'
Date: Tue, 24 Sep 2013 08:35:45 +0300

> From: Don Saklad <dsaklad@gnu.org>
> Date: Mon, 23 Sep 2013 23:54:28 -0400
> 
> After attempting Escape Control-s what does it mean when you get...
> 
>      You must set `rmail-search-mime-header-function'

That you are running a too old Emacs version (23.x, right?).  Time to
upgrade, this problem is fixed in Emacs 24.

Alternatively, change this fragment from rmailsum.el:

  (if rmail-enable-mime
      (if rmail-search-mime-header-function
          (funcall rmail-search-mime-header-function msg regexp (point))
        (error "You must set `rmail-search-mime-header-function'"))
    (re-search-forward regexp nil t)))

to say this instead:

  (if (and rmail-enable-mime
           rmail-search-mime-header-function)
      (funcall rmail-search-mime-header-function msg regexp (point))
    (re-search-forward regexp nil t)))

and then recompile rmailsum.el and reload rmailsum.elc.



reply via email to

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