Skip to content

Commit

Permalink
Fix macro compilation in 'compile'
Browse files Browse the repository at this point in the history
  • Loading branch information
Affonso-Gui committed Mar 27, 2023
1 parent bed4d4b commit aa04195
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lisp/comp/comp.l
Original file line number Diff line number Diff line change
Expand Up @@ -2050,7 +2050,7 @@
(setq dump
(case (car def)
(lambda `(defun ,funmac . ,(cdr def)))
(macro `(defun ,funmac . ,(cdr def)))))
(macro `(defmacro ,funmac . ,(cdr def)))))
(pprint dump f) ))) )

(defun comfile (&rest files) (dolist (f files) (send comp :compile-file f)))
Expand Down

0 comments on commit aa04195

Please sign in to comment.