]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix bad bytecomp-tests cases
authorMattias Engdegård <mattiase@acm.org>
Tue, 8 Aug 2023 10:05:48 +0000 (12:05 +0200)
committerMattias Engdegård <mattiase@acm.org>
Tue, 8 Aug 2023 10:05:48 +0000 (12:05 +0200)
* test/lisp/emacs-lisp/bytecomp-tests.el (bytecomp-tests--test-cases):
Repair broken test cases.

test/lisp/emacs-lisp/bytecomp-tests.el

index dd0c1fe91a06271e5cdeb6de4e1831a7b3da1081..19e08e8d19971575d4c16f68bf86c5664aca6fa5 100644 (file)
@@ -677,16 +677,18 @@ inner loops respectively."
                      (list x (funcall g))))))))
       (funcall (funcall f 'b)))
     (let ((f (lambda (x)
-               (let ((g (lambda () x))
-                     (h (lambda () (setq x (list x x)))))
-                 (let ((x 'a))
-                   (list x (funcall g) (funcall h)))))))
+               (lambda ()
+                 (let ((g (lambda () x))
+                       (h (lambda () (setq x (list x x)))))
+                   (let ((x 'a))
+                     (list x (funcall g) (funcall h))))))))
       (funcall (funcall f 'b)))
     (let ((f (lambda (x)
-               (let ((g (lambda () x))
-                     (h (lambda () (setq x (list x x)))))
-                 (let* ((x 'a))
-                   (list x (funcall g) (funcall h)))))))
+               (lambda ()
+                 (let ((g (lambda () x))
+                       (h (lambda () (setq x (list x x)))))
+                   (let* ((x 'a))
+                     (list x (funcall g) (funcall h))))))))
       (funcall (funcall f 'b)))
 
     ;; Test constant-propagation of access to captured variables.