Skip to content

Commit

Permalink
define defmutable macro in system until bootstrap complete
Browse files Browse the repository at this point in the history
  • Loading branch information
fare committed Oct 31, 2023
1 parent f0c66fb commit f38150c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/gerbil/runtime/system.ss
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ namespace: #f
(import "gambit" "util")
(include "version.ss")

;; Redundantly define this macro here until the version in the prelude is fully bootstrapped.
(defrules defmutable () ((_ var value) (begin (def var value) (set! var var) (void))))

(def gerbil-system-manifest
[["Gerbil" :: (gerbil-version-string)]
["Gambit" :: (system-version-string)]])
Expand Down

0 comments on commit f38150c

Please sign in to comment.