diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-11-19 18:45:47 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-11-19 18:45:47 +0000 |
commit | bacd83a703ab52a6d827a72f3c7d7d946503a777 (patch) | |
tree | 908e93fdca4576197f6611886334ddb96c07c806 /lisp/emacs-lisp/lisp-mode.el | |
parent | 6c3bfd2d92d64f8c1c028f383ff950288441b99e (diff) | |
download | emacs-bacd83a703ab52a6d827a72f3c7d7d946503a777.tar.gz emacs-bacd83a703ab52a6d827a72f3c7d7d946503a777.tar.bz2 emacs-bacd83a703ab52a6d827a72f3c7d7d946503a777.zip |
(lisp-interaction-mode-map): Doc fix.
(with-temp-message): Add lisp-indent-function property.
Diffstat (limited to 'lisp/emacs-lisp/lisp-mode.el')
-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 6b0a0b69c03..98f53a2cd29 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -262,7 +262,7 @@ if that value is non-nil." (error "Process lisp does not exist")) (defvar lisp-interaction-mode-map () - "Keymap for Lisp Interaction moe. + "Keymap for Lisp Interaction mode. All commands in `shared-lisp-mode-map' are inherited by this map.") (if lisp-interaction-mode-map @@ -659,6 +659,7 @@ is the buffer position of the start of the containing expression." (put 'with-output-to-string 'lisp-indent-function 0) (put 'with-temp-file 'lisp-indent-function 1) (put 'with-temp-buffer 'lisp-indent-function 0) +(put 'with-temp-message 'lisp-indent-function 1) (put 'let 'lisp-indent-function 1) (put 'let* 'lisp-indent-function 1) (put 'while 'lisp-indent-function 1) |