changeset 4896:bc777b8e4b45

(text-mode-map): Bind ispell-complete-word to M-TAB.
author Richard M. Stallman <rms@gnu.org>
date Tue, 26 Oct 1993 20:02:21 +0000
parents 7c2d90ff5849
children c3db6fd69f1f
files lisp/textmodes/text-mode.el
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/textmodes/text-mode.el	Tue Oct 26 20:01:56 1993 +0000
+++ b/lisp/textmodes/text-mode.el	Tue Oct 26 20:02:21 1993 +0000
@@ -50,6 +50,7 @@
 (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))