aboutsummaryrefslogtreecommitdiff
path: root/module/vcomponent/parse/xcal.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-06-30 01:58:19 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-07-07 13:10:38 +0200
commit715e36ab81389ebf53ea158027d0a83f144eee0e (patch)
tree1e9522ba3bf4aef212d0b1d179e9bf1db2e6f60b /module/vcomponent/parse/xcal.scm
parentRename attributes => properties, properties => parameters. (diff)
downloadcalp-715e36ab81389ebf53ea158027d0a83f144eee0e.tar.gz
calp-715e36ab81389ebf53ea158027d0a83f144eee0e.tar.xz
Finished renamining attribute to property.
Diffstat (limited to 'module/vcomponent/parse/xcal.scm')
-rw-r--r--module/vcomponent/parse/xcal.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/vcomponent/parse/xcal.scm b/module/vcomponent/parse/xcal.scm
index e67a8239..19d7286a 100644
--- a/module/vcomponent/parse/xcal.scm
+++ b/module/vcomponent/parse/xcal.scm
@@ -125,7 +125,7 @@
(let ((params (handle-parameters parameters))
(tag* (symbol-upcase tag)))
(for (type value) in (zip type value)
- (set! (attr* component tag*)
+ (set! (prop* component tag*)
(make-vline tag*
(handle-tag
tag (handle-value type params value))
@@ -135,7 +135,7 @@
(for (type value) in (zip type value)
(let ((params (make-hash-table))
(tag* (symbol-upcase tag)))
- (set! (attr* component tag*)
+ (set! (prop* component tag*)
(make-vline tag*
(handle-tag
tag (handle-value type params value))