diff options
| author | Oleh Krehel | 2015-06-25 13:14:29 +0200 |
|---|---|---|
| committer | Oleh Krehel | 2015-06-25 13:17:30 +0200 |
| commit | 659199f2ca5f283fb246faa78a244e5ca25f53dd (patch) | |
| tree | 6af3e95b6741070db7ecc7ed3f22c6cea72b6545 | |
| parent | 319eeeb0fb154a0cd1d36ec33c68029ff9d6c290 (diff) | |
| download | emacs-659199f2ca5f283fb246faa78a244e5ca25f53dd.tar.gz emacs-659199f2ca5f283fb246faa78a244e5ca25f53dd.zip | |
lisp/emacs-lisp/cl-indent.el: Fix indent of with-output-to-string
* lisp/emacs-lisp/cl-indent.el (common-lisp-indent-function):
`with-output-to-string' should have the same indent as `progn'.
This is in line with the declaration of `with-output-to-string'.
| -rw-r--r-- | lisp/emacs-lisp/cl-indent.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl-indent.el b/lisp/emacs-lisp/cl-indent.el index 57da7159d5c..9314419a26f 100644 --- a/lisp/emacs-lisp/cl-indent.el +++ b/lisp/emacs-lisp/cl-indent.el | |||
| @@ -827,7 +827,7 @@ optional\\|rest\\|key\\|allow-other-keys\\|aux\\|whole\\|body\\|environment\ | |||
| 827 | (with-accessors . multiple-value-bind) | 827 | (with-accessors . multiple-value-bind) |
| 828 | (with-condition-restarts . multiple-value-bind) | 828 | (with-condition-restarts . multiple-value-bind) |
| 829 | (with-compilation-unit (&lambda &body)) | 829 | (with-compilation-unit (&lambda &body)) |
| 830 | (with-output-to-string (4 2)) | 830 | (with-output-to-string 0) |
| 831 | (with-slots . multiple-value-bind) | 831 | (with-slots . multiple-value-bind) |
| 832 | (with-standard-io-syntax (2))))) | 832 | (with-standard-io-syntax (2))))) |
| 833 | (dolist (el l) | 833 | (dolist (el l) |