Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 03 Apr 2018 14:01:25 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 227257] databases/bbdb configuration changes since emacs FLAVOR
Message-ID:  <bug-227257-13@https.bugs.freebsd.org/bugzilla/>

next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D227257

            Bug ID: 227257
           Summary: databases/bbdb configuration changes since emacs
                    FLAVOR
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Only Me
          Priority: ---
         Component: Individual Port(s)
          Assignee: dryice@FreeBSD.org
          Reporter: emss@free.fr
             Flags: maintainer-feedback?(dryice@FreeBSD.org)
          Assignee: dryice@FreeBSD.org

Hi,

It seems to me that since emacs has been flavoured, databases\bbdb builds
fine but can't be used if configured as stated in 3.x series documentation.
http://bbdb.sourceforge.net/bbdb.html#SEC13
http://bbdb.sourceforge.net/bbdb.html#SEC19

Using the following initialization code :
~/.emacs.d/init.el
;; BBDB setup
(require 'bbdb)
(bbdb-initialize 'gnus 'message)
(bbdb-mua-auto-update-init 'gnus 'message)

emacs barfs on startup, as bbdb-mua-auto-update-init symbol is void.

A few google searches later, the issue seems to be known :
https://bugs.archlinux.org/task/48634

The workaround is the following :
~/.emacs.d/init.el=20
;; BBDB setup
(require 'bbdb-loaddefs) ;; symbol definition void workaround
(require 'bbdb)
(bbdb-initialize 'gnus 'message)
(bbdb-mua-auto-update-init 'gnus 'message)

Could this issue be fixed or an explanation added in pkg-message file, plea=
se ?

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-227257-13>