aboutsummaryrefslogtreecommitdiff
path: root/vcalendar/control.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2019-03-22 20:11:11 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2019-03-22 20:17:52 +0100
commitd46183860c1f3f10095e95023adcb79b1896ab0e (patch)
treedd331a0efe9777bfe84160139da1e39df3226b71 /vcalendar/control.scm
parentAdd stuff to test.scm. (diff)
downloadcalp-d46183860c1f3f10095e95023adcb79b1896ab0e.tar.gz
calp-d46183860c1f3f10095e95023adcb79b1896ab0e.tar.xz
Move C and Scheme code into subdirs.
Diffstat (limited to 'vcalendar/control.scm')
-rw-r--r--vcalendar/control.scm39
1 files changed, 0 insertions, 39 deletions
diff --git a/vcalendar/control.scm b/vcalendar/control.scm
deleted file mode 100644
index a38d678f..00000000
--- a/vcalendar/control.scm
+++ /dev/null
@@ -1,39 +0,0 @@
-(define-module (vcalendar control)
- #:use-module (util)
- #:use-module (vcalendar)
- #:export (with-replaced-attrs))
-
-
-(eval-when (expand load) ; No idea why I must have load here.
- (define href (make-procedure-with-setter hashq-ref hashq-set!))
-
- (define (set-temp-values! table component kvs)
- (for-each (lambda (kv)
- (let* (((key val) kv))
- (when (attr component key)
- (set! (href table key) (attr component key))
- (set! (attr component key) val))))
- kvs))
-
- (define (restore-values! table component keys)
- (for-each (lambda (key)
- (and=> (href table key)
- (lambda (val)
- (set! (attr component key) val))))
- keys)))
-
-;;; TODO with-added-attributes
-
-(define-syntax with-replaced-attrs
- (syntax-rules ()
- [(_ (component (key val) ...)
- body ...)
-
- (let ((htable (make-hash-table 10)))
- (dynamic-wind
- (lambda () (set-temp-values! htable component (quote ((key val) ...)))) ; In guard
- (lambda () body ...)
- (lambda () (restore-values! htable component (quote (key ...))))))])) ; Out guard
-
-;;; TODO test that restore works, at all
-;;; Test that non-local exit and return works