branch: externals/ebdb
commit a69d7bd1d2472bb191248cb490416be44d97fe58
Author: Eric Abrahamsen <e...@ericabrahamsen.net>
Commit: Eric Abrahamsen <e...@ericabrahamsen.net>

    Don't clobber TAB in message-mode
    
    * ebdb-message.el (ebdb-insinuate-message): The whole point of the
      previous line, which manipulates message-completion-alist, is that
      you don't need to clobber TAB.
---
 ebdb-message.el | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/ebdb-message.el b/ebdb-message.el
index bd42315..cdc3c8e 100644
--- a/ebdb-message.el
+++ b/ebdb-message.el
@@ -95,8 +95,7 @@ See Gnus' manual for details."
   (when ebdb-complete-mail
     (cl-pushnew 
'("^\\(Resent-\\)?\\(To\\|B?Cc\\|Reply-To\\|From\\|Mail-Followup-To\\|Mail-Copies-To\\):"
 . ebdb-complete-mail)
                message-completion-alist
-               :test #'equal)
-    (define-key message-mode-map (kbd "TAB") 'ebdb-complete-mail))
+               :test #'equal))
   ;; Other MUAs clear the EBDB buffer before displaying (in
   ;; `ebdb-mua-auto-update', the call to `ebdb-display-records' does
   ;; not pass the "append" flag).  Displaying in message-mode does

Reply via email to