summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonan Waide <waider@waider.ie>2000-11-02 23:30:20 +0000
committerRonan Waide <waider@waider.ie>2000-11-02 23:30:20 +0000
commit0295d79a366f8eb5154066fc5a93401ec9884274 (patch)
tree5d18311e0f5e5f542c5b8e2edbc9f11465da5a2d
parent50c9c4d5087737714007b6612bd6052897d02f74 (diff)
Define characterp if it's not already bound. Used in bbdb-vm.
-rw-r--r--lisp/bbdb.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/bbdb.el b/lisp/bbdb.el
index 96832b6..0559db0 100644
--- a/lisp/bbdb.el
+++ b/lisp/bbdb.el
@@ -69,6 +69,9 @@ prompt the users on how to merge records when duplicates are detected.")
(defmacro with-current-buffer (buf &rest body)
`(save-current-buffer (set-buffer ,buf) ,@body)))
+(unless (fboundp 'characterp)
+ (defmacro characterp(c) `(char-or-string-p ,c))) ;; XXX close
+
(unless (fboundp 'defvaralias)
(defun defvaralias (&rest args)))