Re: bbdb3

Greg Bognar <[email protected]> Mon, 12 Feb 2018 11:57:51 +0100
Newsgroups gmane.mail.wanderlust.general
Message-ID <87h8qmsceo.wl-greg.bognar__8934.97611764378$1518433049$gmane$org@startmail.com>
I did just this, and now the error message is

Error occured in running wl-message-redisplay-hook, (arrayp nil)

But the message is displayed.

bbdb-20180106.910

On Sun 11 Feb 2018 at 10:44 Randy Bush wrote:
> > Please look in your ~/.emacs.d/elpa/bbdb-*/bbdb-mua.el file for a
> > constant.
> > 
> > (defconst bbdb-mua-mode-alist
> > ...
> >     (wl wl-summary-mode wl-draft-mode)
> > 
> > 
> > Correct?
> > 
> > Well, the problem is that when we read emails with WL, we are in
> > mime-view-mode, so BBDB cannot handle that.  Here is where my defconst
> > ended up going.
> > 
> > (defconst bbdb-mua-mode-alist
> >   '(
> >     (wl wl-summary-mode wl-draft-mode mime-view-mode)
> >     (vm vm-mode vm-virtual-mode vm-summary-mode vm-presentation-mode)
> >     (gnus gnus-summary-mode gnus-article-mode gnus-tree-mode)
> >     (rmail rmail-mode rmail-summary-mode)
> >     (mh mhe-mode mhe-summary-mode mh-folder-mode)
> >     (mu4e mu4e-view-mode)  ; Tackle `mu4e-headers-mode' later
> >     (message message-mode mu4e-compose-mode notmuch-message-mode)
> >     (mail mail-mode)
> >     )
> >   "Alist of MUA modes supported by BBDB.
> > Each element is of the form (MUA MODE MODE ...), where MODEs are used by MUA.")
> > 
> > You can see that I moved 'wl' to the top of it, because it makes
> > single stepping through the emacs elisp debugger faster if this
> > evaluates sooner, rather than later.
> 
> for the list, yep, this killed the error
> 
> more off list
> 
> randy
>