1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

; Spelling fixes

This commit is contained in:
Paul Eggert 2019-12-10 20:04:36 -08:00
parent 0940296ebe
commit b0f20651e3
41 changed files with 91 additions and 93 deletions

View file

@ -569,14 +569,14 @@ collection clause."
finally return result)
'(2 1 0)))
;; this nonintuitive result is replicated by clisp
;; this unintuitive result is replicated by clisp
(should (equal (cl-loop with result
for x below 3
and y = (progn (push x result))
finally return result)
'(2 1 0 0)))
;; this nonintuitive result is replicated by clisp
;; this unintuitive result is replicated by clisp
(should (equal (cl-loop with result
for x below 3
and y = (progn (push x result)) then (progn (push (1+ x) result))