Re: bbdb3

Randy Bush <[email protected]> Sun, 11 Feb 2018 18:44:43 +0900
Newsgroups gmane.mail.wanderlust.general
Message-ID <m2d11bx3lg.wl-randy__27790.5608331368$1518342251$gmane$org@psg.com>
> 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