In case there are no activation-forms, add a gratuitous `(void)` at the end.

This commit is contained in:
Tony Garnock-Jones 2018-04-30 22:47:53 +01:00
parent f3ca2b6a15
commit 2575b71db4
1 changed files with 2 additions and 1 deletions

View File

@ -62,7 +62,8 @@
(provide activate!* activate!)
(define activated? #f)
(define (activate!*)
#,@(reverse activation-forms))
#,@(reverse activation-forms)
(void))
(define (activate!)
(when (not activated?)
(set! activated? #t)