diff options
author | Erik Naggum <erik@naggum.no> | 1996-10-08 18:22:57 +0000 |
---|---|---|
committer | Erik Naggum <erik@naggum.no> | 1996-10-08 18:22:57 +0000 |
commit | 54c014f0a9229899389dc4d8dfb1429318be2f2b (patch) | |
tree | 4680cc539c491c3724be2040041c8d88e570c64d /lisp/emacs-lisp/lisp-mode.el | |
parent | 67580ab56650c7b8d688930dfee3ed6b37d7310a (diff) | |
download | emacs-54c014f0a9229899389dc4d8dfb1429318be2f2b.tar.gz emacs-54c014f0a9229899389dc4d8dfb1429318be2f2b.tar.bz2 emacs-54c014f0a9229899389dc4d8dfb1429318be2f2b.zip |
(with-current-buffer): Correct indentation property.
Diffstat (limited to 'lisp/emacs-lisp/lisp-mode.el')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 4eae1943d99..f19f55431ab 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -580,7 +580,7 @@ of the start of the containing expression." (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-current-buffer 'lisp-indent-function 1) (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) |