all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Don Saklad <dsaklad@gnu.org>
To: help-gnu-emacs@gnu.org, dsaklad@gnu.org
Subject: After attempting Excape x rmail-summary-by-regexp what does it mean when you get... You must set `rmail-search-mime-header-function'
Date: Wed, 05 Feb 2014 23:19:36 -0500	[thread overview]
Message-ID: <5ilhxolvon.fsf@fencepost.gnu.org> (raw)

          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.


Trying to do that isn't a familiar thing for neophytes, or even for intermediate types!... a?) Any easier, simpler way to handle it when you get
You must set `rmail-search-mime-header-function'

b?) After attempting Escape x rmail-summary-by-regexp what does it mean when you get...
You must set `rmail-search-mime-header-function'



                 reply	other threads:[~2014-02-06  4:19 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5ilhxolvon.fsf@fencepost.gnu.org \
    --to=dsaklad@gnu.org \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.