Silence byte-compiler in generator-tests.el
* test/lisp/emacs-lisp/generator-tests.el (cps-let*-shadow-empty) (cps-let-shadow-empty, cps-let*-parallel): Silence byte-compiler.
This commit is contained in:
parent
722a8ebb71
commit
d16db92cc7
1 changed files with 3 additions and 3 deletions
|
@ -85,9 +85,9 @@ identical output."
|
|||
(cps-testcase cps-or-empty (or))
|
||||
|
||||
(cps-testcase cps-let* (let* ((i 10)) i))
|
||||
(cps-testcase cps-let*-shadow-empty (let* ((i 10)) (let (i) i)))
|
||||
(cps-testcase cps-let*-shadow-empty (let* ((i 10)) i (let ((i nil)) i)))
|
||||
(cps-testcase cps-let (let ((i 10)) i))
|
||||
(cps-testcase cps-let-shadow-empty (let ((i 10)) (let (i) i)))
|
||||
(cps-testcase cps-let-shadow-empty (let ((i 10)) i (let ((i nil)) i)))
|
||||
(cps-testcase cps-let-novars (let nil 42))
|
||||
(cps-testcase cps-let*-novars (let* nil 42))
|
||||
|
||||
|
@ -95,7 +95,7 @@ identical output."
|
|||
(let ((a 5) (b 6)) (let ((a b) (b a)) (list a b))))
|
||||
|
||||
(cps-testcase cps-let*-parallel
|
||||
(let* ((a 5) (b 6)) (let* ((a b) (b a)) (list a b))))
|
||||
(let* ((a 5) (b 6)) a (let* ((a b) (b a)) (list a b))))
|
||||
|
||||
(cps-testcase cps-while-dynamic
|
||||
(setq *cps-test-i* 0)
|
||||
|
|
Loading…
Add table
Reference in a new issue