diff options
| author | Helmut Eller | 2013-11-04 14:50:56 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2013-11-04 14:50:56 -0500 |
| commit | ef9dd188afe8f2bb8837e8be90a8c7d8c357320b (patch) | |
| tree | 96db79490c51339546a674ccc5dbf7619453f731 | |
| parent | 306e7308ba76ce1e1d1300aade7c79418b60ef4a (diff) | |
| download | emacs-ef9dd188afe8f2bb8837e8be90a8c7d8c357320b.tar.gz emacs-ef9dd188afe8f2bb8837e8be90a8c7d8c357320b.zip | |
* lisp/emacs-lisp/cl-indent.el (with-compilation-unit): Add rule.
Fixes: debbugs:15782
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/cl-indent.el | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 02513660ff0..b5aa974c10c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-11-04 Helmut Eller <eller.helmut@gmail.com> | ||
| 2 | |||
| 3 | * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782). | ||
| 4 | |||
| 1 | 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change) | 5 | 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change) |
| 2 | 6 | ||
| 3 | * emacs-lisp/cconv.el (cconv-convert): Check form of let binding | 7 | * emacs-lisp/cconv.el (cconv-convert): Check form of let binding |
diff --git a/lisp/emacs-lisp/cl-indent.el b/lisp/emacs-lisp/cl-indent.el index bbfe9ec6424..cc7d2a88e61 100644 --- a/lisp/emacs-lisp/cl-indent.el +++ b/lisp/emacs-lisp/cl-indent.el | |||
| @@ -756,6 +756,7 @@ optional\\|rest\\|key\\|allow-other-keys\\|aux\\|whole\\|body\\|environment\ | |||
| 756 | (when 1) | 756 | (when 1) |
| 757 | (with-accessors . multiple-value-bind) | 757 | (with-accessors . multiple-value-bind) |
| 758 | (with-condition-restarts . multiple-value-bind) | 758 | (with-condition-restarts . multiple-value-bind) |
| 759 | (with-compilation-unit (&lambda &body)) | ||
| 759 | (with-output-to-string (4 2)) | 760 | (with-output-to-string (4 2)) |
| 760 | (with-slots . multiple-value-bind) | 761 | (with-slots . multiple-value-bind) |
| 761 | (with-standard-io-syntax (2))))) | 762 | (with-standard-io-syntax (2))))) |