]> git.eshelyaron.com Git - emacs.git/commitdiff
* test/lisp/emacs-lisp/subr-x-tests.el (subr-x-named-let): New test
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 8 Dec 2021 21:58:24 +0000 (16:58 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 8 Dec 2021 21:58:24 +0000 (16:58 -0500)
test/lisp/emacs-lisp/subr-x-tests.el

index d83695060009bb18339719aa0639079008a1dfbf..821b6770ba086711c9d5c7d496327e3166c499c3 100644 (file)
       (buffer-string))
     "foo\n")))
 
-(ert-deftest test-add-display-text-property ()
+(ert-deftest subr-x-test-add-display-text-property ()
   (with-temp-buffer
     (insert "Foo bar zot gazonk")
     (add-display-text-property 4 8 'height 2.0)
                    [(raise 0.5) (height 2.0)]))
     (should (equal (get-text-property 9 'display) '(raise 0.5)))))
 
+(ert-deftest subr-x-named-let ()
+  (let ((funs ()))
+    (named-let loop
+        ((rest '(1 42 3))
+         (sum 0))
+      (when rest
+        ;; Here, we make sure that the variables are distinct in every
+        ;; iteration, since a naive tail-call optimization would tend to end up
+        ;; with a single `sum' variable being shared by all the closures.
+        (push (lambda () sum) funs)
+        ;; Here we add a dummy `sum' variable which shadows the `sum' iteration
+        ;; variable since a naive tail-call optimization could also trip here
+        ;; thinking it can `(setq sum ...)' to set the iteration
+        ;; variable's value.
+        (let ((sum sum))
+          (loop (cdr rest) (+ sum (car rest))))))
+    (should (equal (mapcar #'funcall funs) '(43 1 0)))))
+
 (provide 'subr-x-tests)
 ;;; subr-x-tests.el ends here