Skip to content

Commit

Permalink
Make toplevel function return nothing
Browse files Browse the repository at this point in the history
  • Loading branch information
Gleefre committed Nov 5, 2023
1 parent 195c6ef commit e9b0ead
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/utils.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ Possible options:
(initialize-sketch)
,@(cdr (assoc :start options))
(make-instance ',sketch-name ,@initargs))))
,@(cdr (assoc :quit options)))
,@(cdr (assoc :quit options))
(values))
(values ',name ',toplevel-name)))))

(defun pad-list (list pad length)
Expand Down

0 comments on commit e9b0ead

Please sign in to comment.