all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* After attempting Escape Control-s what does it mean when you get... You must set `rmail-search-mime-header-function'
@ 2013-09-24  3:54 Don Saklad
  2013-09-24  5:35 ` Eli Zaretskii
  0 siblings, 1 reply; 2+ messages in thread
From: Don Saklad @ 2013-09-24  3:54 UTC (permalink / raw
  To: help-gnu-emacs, Don Warner Saklad

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

     You must set `rmail-search-mime-header-function'





.



^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: After attempting Escape Control-s what does it mean when you get... You must set `rmail-search-mime-header-function'
  2013-09-24  3:54 After attempting Escape Control-s what does it mean when you get... You must set `rmail-search-mime-header-function' Don Saklad
@ 2013-09-24  5:35 ` Eli Zaretskii
  0 siblings, 0 replies; 2+ messages in thread
From: Eli Zaretskii @ 2013-09-24  5:35 UTC (permalink / raw
  To: help-gnu-emacs

> 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.



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-09-24  5:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-24  3:54 After attempting Escape Control-s what does it mean when you get... You must set `rmail-search-mime-header-function' Don Saklad
2013-09-24  5:35 ` Eli Zaretskii

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.