On Saturday, August 19, 2006 at 12:45:00, Kirill A. Korinskiy wrote: > Hi > > Gentoo has nex patch, why do not be including cvs-tree?
Because it is broken ;-) There is one closing paren missing and it also does not add the necessary (require 'mail-parse). > --- lisp/bbdb-hooks.el.orig 2006-08-19 12:37:58.331351954 +0400 > +++ lisp/bbdb-hooks.el 2006-08-19 12:39:44.324758598 +0400 > @@ -147,7 +147,8 @@ > (buffer-substring (match-end 0) > (progn (end-of-line 2) (point)))))))) > (forward-line 1)) > - done))) > + (and done > + (mail-decode-encoded-word-string done)))) > > (defcustom bbdb-ignore-most-messages-alist '() > "*An alist describing which messages to automatically create BBDB It should be like this, which is in CVS now. diff -u -r1.78 bbdb-hooks.el --- lisp/bbdb-hooks.el 2 Aug 2005 19:37:08 -0000 1.78 +++ lisp/bbdb-hooks.el 9 Oct 2006 22:28:27 -0000 @@ -37,6 +37,7 @@ (require 'bbdb) (require 'bbdb-com) +(require 'mail-parse) (eval-when-compile (condition-case() @@ -147,7 +148,8 @@ (buffer-substring (match-end 0) (progn (end-of-line 2) (point)))))))) (forward-line 1)) - done))) + (and done + (mail-decode-encoded-word-string done))))) (defcustom bbdb-ignore-most-messages-alist '() "*An alist describing which messages to automatically create BBDB Robert ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ bbdb-info@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bbdb-info BBDB Home Page: http://bbdb.sourceforge.net/