summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-09-27 20:38:03 +0000
committerRichard M. Stallman <rms@gnu.org>1996-09-27 20:38:03 +0000
commit38f16fe1991b78104e6802d8bcbe910520548690 (patch)
tree38a9dfd65800b2044b279201061cb7f2002449b1 /lisp/emacs-lisp
parent31f4ca2398e4a57a42a30e4342e4279f794f69b5 (diff)
downloademacs-38f16fe1991b78104e6802d8bcbe910520548690.tar.gz
emacs-38f16fe1991b78104e6802d8bcbe910520548690.tar.bz2
emacs-38f16fe1991b78104e6802d8bcbe910520548690.zip
(save-current-buffer, with-current-buffer)
(with-output-to-string): Specify how to indent.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/lisp-mode.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el
index 541cbe6f445..8407d07dff9 100644
--- a/lisp/emacs-lisp/lisp-mode.el
+++ b/lisp/emacs-lisp/lisp-mode.el
@@ -579,6 +579,9 @@ of the start of the containing expression."
(put 'save-selected-window 'lisp-indent-function 0)
(put 'save-restriction 'lisp-indent-function 0)
(put 'save-match-data 'lisp-indent-function 0)
+(put 'save-current-buffer 'lisp-indent-function 0)
+(put 'with-current-buffer 'lisp-indent-function 0)
+(put 'with-output-to-string 'lisp-indent-function 0)
(put 'let 'lisp-indent-function 1)
(put 'let* 'lisp-indent-function 1)
(put 'while 'lisp-indent-function 1)