aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/guile_interface.scm.c19
-rw-r--r--src/vcal.h2
2 files changed, 20 insertions, 1 deletions
diff --git a/src/guile_interface.scm.c b/src/guile_interface.scm.c
index 1a843f4a..036e9e9c 100644
--- a/src/guile_interface.scm.c
+++ b/src/guile_interface.scm.c
@@ -90,6 +90,25 @@ SCM_DEFINE (vcomponent_get_property, "%vcomponent-get-property", 3, 0, 0,
return llist;
}
+SCM_DEFINE (vcomponent_set_property_x, "%vcomponent-set-property!", 4, 0, 0,
+ (SCM component, SCM attr, SCM prop, SCM val),
+ "")
+{
+ scm_assert_foreign_object_type (vcomponent_type, component);
+ vcomponent* comp = scm_foreign_object_ref (component, 0);
+
+ char* key = scm_to_utf8_stringn(scm_string_upcase(attr), NULL);
+ char* prop_key = scm_to_utf8_stringn(scm_string_upcase(prop), NULL);
+ content_line* cl = get_attributes (comp, key);
+ free(key);
+
+ TRIE(param_set)* tt = &cl->cval->val;
+ LLIST(strbuf)* vals = GET(TRIE(param_set))(tt, prop_key);
+ vals->cval->scm = val;
+
+ return SCM_UNSPECIFIED;
+}
+
SCM_DEFINE (vcomponent_set_attr_x, "%vcomponent-set-attribute!", 3, 0, 0,
(SCM component, SCM attr, SCM new_value),
"")
diff --git a/src/vcal.h b/src/vcal.h
index 9b0e4893..c9a0272f 100644
--- a/src/vcal.h
+++ b/src/vcal.h
@@ -14,7 +14,7 @@
/*
* content_line:
- * a mapping between a top level key, and everything it contains.
+ * (a mapping) between a top level key, and everything it contains.
* content_set:
* A top level value, along with a list of kv pairs for all its
* possible parameters.