diff options
| author | Nathan Weizenbaum <nex342@gmail.com> | 2010-08-08 00:04:55 -0700 |
|---|---|---|
| committer | Nathan Weizenbaum <nex342@gmail.com> | 2010-08-08 00:04:55 -0700 |
| commit | bf7e37349c02fc4cdc45d11b9ccc29895473b49f (patch) | |
| tree | 19273056a1a2c1ac17addf31b8279d94e9b4bd02 | |
| parent | 01b102277657c28d49aa4a66128381a055ef1cb4 (diff) | |
Fix persp-frame-local-let.
| -rw-r--r-- | perspective.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perspective.el b/perspective.el index 0e4eb4d..d7d012f 100644 --- a/perspective.el +++ b/perspective.el @@ -73,7 +73,8 @@ them in Emacs >= 23.2. In older versions, this is identical to `(when (boundp ',name) ,name)))) binding-syms) (unwind-protect - (progn ,@(setmap bindings)) + (progn ,@(setmap bindings) + ,@body) ,@(setmap binding-syms))))))) (defstruct (perspective |
