From: Richard M. Stallman Date: Thu, 19 Nov 1998 18:45:47 +0000 (+0000) Subject: (lisp-interaction-mode-map): Doc fix. X-Git-Tag: emacs-20.4~1211 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bacd83a703ab52a6d827a72f3c7d7d946503a777;p=emacs.git (lisp-interaction-mode-map): Doc fix. (with-temp-message): Add lisp-indent-function property. --- 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)