Function: eudc--using-bbdb-3-or-newer-p
eudc--using-bbdb-3-or-newer-p is a byte-compiled function defined in
eudc.el.gz.
Signature
(eudc--using-bbdb-3-or-newer-p)
Documentation
Return non-nil if BBDB version is 3 or greater.
Source Code
;; Defined in /usr/src/emacs/lisp/net/eudc.el.gz
(defun eudc--using-bbdb-3-or-newer-p ()
"Return non-nil if BBDB version is 3 or greater."
(or
;; MELPA versions of BBDB may have a bad package version, but
;; they're all version 3 or later.
(equal bbdb-version "@PACKAGE_VERSION@")
;; Development versions of BBDB can have the format "X.YZ devo".
;; Split the string just in case.
(version<= "3" (car (split-string bbdb-version)))))