From: Richard M. Stallman Date: Tue, 26 Oct 1993 20:02:21 +0000 (+0000) Subject: (text-mode-map): Bind ispell-complete-word to M-TAB. X-Git-Tag: emacs-19.34~10955 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fb14a9a72b9cb2a01a159cfce306a90cad082009;p=emacs.git (text-mode-map): Bind ispell-complete-word to M-TAB. --- diff --git a/lisp/textmodes/text-mode.el b/lisp/textmodes/text-mode.el index c637b100790..496270253bf 100644 --- a/lisp/textmodes/text-mode.el +++ b/lisp/textmodes/text-mode.el @@ -50,6 +50,7 @@ inherit all the commands defined in this map.") (if text-mode-map () (setq text-mode-map (make-sparse-keymap)) + (define-key text-mode-map "\e\t" 'ispell-complete-word) (define-key text-mode-map "\t" 'tab-to-tab-stop) (define-key text-mode-map "\es" 'center-line) (define-key text-mode-map "\eS" 'center-paragraph))