]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't expand body inside a let-binding when there are no bindings
authorMark Oteiza <mvoteiza@udel.edu>
Thu, 16 Feb 2017 01:40:46 +0000 (20:40 -0500)
committerMark Oteiza <mvoteiza@udel.edu>
Thu, 16 Feb 2017 01:40:46 +0000 (20:40 -0500)
* lisp/emacs-lisp/pcase.el (pcase-codegen): Only let-bind if VARS
is non-nil.

lisp/emacs-lisp/pcase.el

index 46a5eedd15018c9d55fae485958b858eeee65f3e..289265abf27ae64a4feb21124eddbcefae757431 100644 (file)
@@ -437,8 +437,10 @@ to this macro."
   ;; Don't use let*, otherwise macroexp-let* may merge it with some surrounding
   ;; let* which might prevent the setcar/setcdr in pcase--expand's fancy
   ;; codegen from later metamorphosing this let into a funcall.
-  `(let ,(mapcar (lambda (b) (list (car b) (cdr b))) vars)
-     ,@code))
+  (if vars
+      `(let ,(mapcar (lambda (b) (list (car b) (cdr b))) vars)
+         ,@code)
+    `(progn ,@code)))
 
 (defun pcase--small-branch-p (code)
   (and (= 1 (length code))