diff options
author | Richard M. Stallman <rms@gnu.org> | 2001-11-20 23:54:28 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2001-11-20 23:54:28 +0000 |
commit | 310b122741e5e6fd2fc874c44cb111f7cd428952 (patch) | |
tree | 4f45956857665813d2d99f4f5d128cbf74e28b9a /lisp/emacs-lisp | |
parent | ac5231e6bc15558c805a00bc69880ab0ba61cc3a (diff) | |
download | emacs-310b122741e5e6fd2fc874c44cb111f7cd428952.tar.gz emacs-310b122741e5e6fd2fc874c44cb111f7cd428952.tar.bz2 emacs-310b122741e5e6fd2fc874c44cb111f7cd428952.zip |
(lisp-interaction-mode): Set local-abbrev-table to lisp-mode-abbrev-table.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 95bfd0121f7..a077c9e3d3b 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -379,7 +379,8 @@ Paragraphs are separated only by blank lines. Semicolons start comments. \\{lisp-interaction-mode-map} Entry to this mode calls the value of `lisp-interaction-mode-hook' -if that value is non-nil.") +if that value is non-nil." + (setq local-abbrev-table lisp-mode-abbrev-table)) (defun eval-print-last-sexp () "Evaluate sexp before point; print value into current buffer. |