diff options
author | Erik Naggum <erik@naggum.no> | 1996-10-03 02:16:38 +0000 |
---|---|---|
committer | Erik Naggum <erik@naggum.no> | 1996-10-03 02:16:38 +0000 |
commit | e0119683e4094d1f0d5110710a8d58a9d9f7115c (patch) | |
tree | e740a7fde4d6e9cc5272b128330aa7a711add22d /lisp/emacs-lisp | |
parent | a2fdb55cd3ac5f08a5ef2d5ab1cd1be071152b92 (diff) | |
download | emacs-e0119683e4094d1f0d5110710a8d58a9d9f7115c.tar.gz emacs-e0119683e4094d1f0d5110710a8d58a9d9f7115c.tar.bz2 emacs-e0119683e4094d1f0d5110710a8d58a9d9f7115c.zip |
(with-temp-buffer): Add indentation property.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 424db7d7ddb..e3266c924d7 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -583,6 +583,7 @@ of the start of the containing expression." (put 'with-current-buffer 'lisp-indent-function 0) (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 'let 'lisp-indent-function 1) (put 'let* 'lisp-indent-function 1) (put 'while 'lisp-indent-function 1) |