aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emacs-lisp/lisp-mode.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1992-07-27 02:56:28 +0000
committerRichard M. Stallman <[email protected]>1992-07-27 02:56:28 +0000
commitab67260b084615a1451e263c1c05b2f64230c6e1 (patch)
treebce921daf1e129f90eec9e3980cf9d68794ef0dd /lisp/emacs-lisp/lisp-mode.el
parent8a4c10dcc63f575b0a5e20b50757640c0a158ee7 (diff)
*** empty log message ***
Diffstat (limited to 'lisp/emacs-lisp/lisp-mode.el')
-rw-r--r--lisp/emacs-lisp/lisp-mode.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el
index 76d34d7a0e..2e4716f325 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 ()