diff options
author | Richard M. Stallman <rms@gnu.org> | 1992-07-27 02:56:28 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1992-07-27 02:56:28 +0000 |
commit | ab67260b084615a1451e263c1c05b2f64230c6e1 (patch) | |
tree | bce921daf1e129f90eec9e3980cf9d68794ef0dd /lisp/emacs-lisp/lisp-mode.el | |
parent | 8a4c10dcc63f575b0a5e20b50757640c0a158ee7 (diff) | |
download | emacs-ab67260b084615a1451e263c1c05b2f64230c6e1.tar.gz emacs-ab67260b084615a1451e263c1c05b2f64230c6e1.tar.bz2 emacs-ab67260b084615a1451e263c1c05b2f64230c6e1.zip |
*** empty log message ***
Diffstat (limited to 'lisp/emacs-lisp/lisp-mode.el')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 76d34d7a0e6..2e4716f3256 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -113,6 +113,7 @@ All commands in shared-lisp-mode-map are inherited by this map.") () (setq emacs-lisp-mode-map (nconc (make-sparse-keymap) shared-lisp-mode-map)) + (define-key emacs-lisp-mode-map "\e\t" 'lisp-complete-symbol) (define-key emacs-lisp-mode-map "\e\C-x" 'eval-defun)) (defun emacs-lisp-mode () @@ -178,6 +179,7 @@ All commands in `shared-lisp-mode-map' are inherited by this map.") (setq lisp-interaction-mode-map (nconc (make-sparse-keymap) shared-lisp-mode-map)) (define-key lisp-interaction-mode-map "\e\C-x" 'eval-defun) + (define-key lisp-interaction-mode-map "\e\t" 'lisp-complete-symbol) (define-key lisp-interaction-mode-map "\n" 'eval-print-last-sexp)) (defun lisp-interaction-mode () |