unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* message-tab: support EUDC?
@ 2004-01-08  9:07 Kai Grossjohann
  2004-01-08  9:14 ` Kai Grossjohann
  0 siblings, 1 reply; 2+ messages in thread
From: Kai Grossjohann @ 2004-01-08  9:07 UTC (permalink / raw)


What do people think about this patch to make message-expand-name
support EUDC?

--- message.el.~7.2.~	Mon Jan  5 17:30:15 2004
+++ message.el	Thu Jan  8 10:06:27 2004
@@ -6628,9 +6628,12 @@
 	    (delete-region (point) (progn (forward-line 3) (point))))))))))
 
 (defun message-expand-name ()
-  (if (fboundp 'bbdb-complete-name)
-      (bbdb-complete-name)
-    (expand-abbrev)))
+  (cond ((and (boundp 'eudc-protocol) eudc-protocol)
+	 (eudc-expand-inline))
+	((fboundp 'bbdb-complete-name)
+	 (bbdb-complete-name))
+	(t
+	 (expand-abbrev))))
 
 ;;; Help stuff.

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: message-tab: support EUDC?
  2004-01-08  9:07 message-tab: support EUDC? Kai Grossjohann
@ 2004-01-08  9:14 ` Kai Grossjohann
  0 siblings, 0 replies; 2+ messages in thread
From: Kai Grossjohann @ 2004-01-08  9:14 UTC (permalink / raw)


Wah :-(  This was meant to go to the Gnus developer list.

Kai

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2004-01-08  9:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-01-08  9:07 message-tab: support EUDC? Kai Grossjohann
2004-01-08  9:14 ` Kai Grossjohann

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).