From 21441647931c6ec3079031681c9e8faef2ee2fca Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Fri, 24 Sep 2010 22:02:33 +0900 Subject: [PATCH] removing comments --- lib/srfi/39.module | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/lib/srfi/39.module b/lib/srfi/39.module index 367e9cf5..52b550f7 100644 --- a/lib/srfi/39.module +++ b/lib/srfi/39.module @@ -1,21 +1,4 @@ -;; (param) => get-cell + cdr -;; (param value) => get-cell + [convert] + set-cdr! - -;; need 3 opcodes: param cell -;; context params -;; context-params-set! - -;; analyze needs to translate param calls to proper usages of the -;; first two opcodes - -;; (parameterize ((param value)) body ...) -;; => (let* ((old-params (thread-parameters)) -;; (new-params (cons (cons param (param-convert value)) old-params))) -;; (dynamic-wind (lambda () (thread-set-parameters! new-params)) -;; (lambda () body ...) -;; (lambda () (thread-set-parameters! old-params)))) - (define-module (srfi 39) (export make-parameter parameterize) (import-immutable (scheme))