diff options
Diffstat (limited to 'module/language/lua/runtime.scm')
-rw-r--r-- | module/language/lua/runtime.scm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/module/language/lua/runtime.scm b/module/language/lua/runtime.scm index 6a0541273..496f5122c 100644 --- a/module/language/lua/runtime.scm +++ b/module/language/lua/runtime.scm @@ -332,10 +332,7 @@ (runtime-error "~a" (if (null? opts) "assertion failed" (car opts))))) ;; NOTE: collectgarbage cannot be fully implemented because it expects -;; an incremental garbage collector that matches lua's interface; libgc -;; can be incremental but i don't think we can turn that on from guile -;; currently, and even if we could i'm not sure that libgc exposes what -;; lua wants +;; an incremental garbage collector that matches lua's interface (define-global collectgarbage (lambda* (opt #:optional (arg #nil)) (define (ignore) (runtime-warning "collectgarbage cannot respect command ~a" opt)) |