From b8a795dc2ae730cc0462982715ba47c9870b5d0c Mon Sep 17 00:00:00 2001 From: ueno Date: Tue, 30 Apr 2002 12:29:03 +0000 Subject: [PATCH] * message.el (message-expand-name): Use lsdb-complete-name if available. * lpath.el: Bind lsdb-complete-name. --- lisp/lpath.el | 2 +- lisp/message.el | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lisp/lpath.el b/lisp/lpath.el index 6e33af8..546a0ae 100644 --- a/lisp/lpath.el +++ b/lisp/lpath.el @@ -136,7 +136,7 @@ (t '(function-max-args smiley-encode-buffer)))) (common-fns - nil) + '(lsdb-complete-name)) (variables (cond ((featurep 'xemacs) diff --git a/lisp/message.el b/lisp/message.el index 7ab5178..9134fc2 100644 --- a/lisp/message.el +++ b/lisp/message.el @@ -6208,7 +6208,9 @@ those headers." (defun message-expand-name () (if (fboundp 'bbdb-complete-name) (bbdb-complete-name) - (expand-abbrev))) + (if (fboundp 'lsdb-complete-name) + (lsdb-complete-name) + (expand-abbrev)))) ;;; Help stuff. -- 1.7.10.4