aboutsummaryrefslogtreecommitdiff
path: root/guile
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2021-05-06 21:39:32 +0200
committerThomas White <taw@physics.org>2021-05-06 21:39:32 +0200
commit44707b16a0dbcfba3ed39cf900cf4faff63c9f40 (patch)
tree74dd1dac6c8c41322b784d00699b93ef4ab82392 /guile
parentfe626173147e2991636994f3d4ed5b76dc0ae396 (diff)
Remove state-rw
Diffstat (limited to 'guile')
-rw-r--r--guile/starlet/state-rw.scm13
1 files changed, 0 insertions, 13 deletions
diff --git a/guile/starlet/state-rw.scm b/guile/starlet/state-rw.scm
deleted file mode 100644
index 5b14c6e..0000000
--- a/guile/starlet/state-rw.scm
+++ /dev/null
@@ -1,13 +0,0 @@
-(define-module (starlet state-rw)
- #:use-module (starlet base)
- #:export (write-state))
-
-
-(define (write-state state)
- (state-map
- (lambda (fix attr val)
- (list 'at
- (get-fixture-name fix)
- (get-attr-name attr)
- val))
- state))