diff options
| author | Richard M. Stallman | 2001-11-20 23:54:28 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-11-20 23:54:28 +0000 |
| commit | 310b122741e5e6fd2fc874c44cb111f7cd428952 (patch) | |
| tree | 4f45956857665813d2d99f4f5d128cbf74e28b9a | |
| parent | ac5231e6bc15558c805a00bc69880ab0ba61cc3a (diff) | |
| download | emacs-310b122741e5e6fd2fc874c44cb111f7cd428952.tar.gz emacs-310b122741e5e6fd2fc874c44cb111f7cd428952.zip | |
(lisp-interaction-mode): Set local-abbrev-table to lisp-mode-abbrev-table.
| -rw-r--r-- | lisp/ChangeLog | 11 | ||||
| -rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 3 |
2 files changed, 13 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f41664569b4..5065f1fd332 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,16 @@ | |||
| 1 | 2001-11-20 Richard M. Stallman <rms@gnu.org> | 1 | 2001-11-20 Richard M. Stallman <rms@gnu.org> |
| 2 | 2 | ||
| 3 | * emacs-lisp/lisp-mode.el (lisp-interaction-mode): | ||
| 4 | Set local-abbrev-table to lisp-mode-abbrev-table. | ||
| 5 | |||
| 6 | * emacs-lisp/re-builder.el (reb-mode): | ||
| 7 | Don't use define-derived-mode. Call kill-all-local-variables. | ||
| 8 | |||
| 9 | * emacs-lisp/lisp-mode.el (lisp-mode, emacs-lisp-mode): | ||
| 10 | Don't use define-derived-mode. | ||
| 11 | |||
| 12 | * help-mode.el (help-mode): Undo 2001-10-07 change. | ||
| 13 | |||
| 3 | * replace.el (occur-mode): Undo 2001-5-20 change. | 14 | * replace.el (occur-mode): Undo 2001-5-20 change. |
| 4 | 15 | ||
| 5 | 2001-11-20 Eli Zaretskii <eliz@is.elta.co.il> | 16 | 2001-11-20 Eli Zaretskii <eliz@is.elta.co.il> |
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. | |||
| 379 | Semicolons start comments. | 379 | Semicolons start comments. |
| 380 | \\{lisp-interaction-mode-map} | 380 | \\{lisp-interaction-mode-map} |
| 381 | Entry to this mode calls the value of `lisp-interaction-mode-hook' | 381 | Entry to this mode calls the value of `lisp-interaction-mode-hook' |
| 382 | if that value is non-nil.") | 382 | if that value is non-nil." |
| 383 | (setq local-abbrev-table lisp-mode-abbrev-table)) | ||
| 383 | 384 | ||
| 384 | (defun eval-print-last-sexp () | 385 | (defun eval-print-last-sexp () |
| 385 | "Evaluate sexp before point; print value into current buffer. | 386 | "Evaluate sexp before point; print value into current buffer. |