aboutsummaryrefslogtreecommitdiff
path: root/module/vcomponent/primitive.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-10-01 23:39:00 +0200
committerHugo Hörnquist <hugo@hornquist.se>2019-10-01 23:39:00 +0200
commit7539f8c8804849294e100c5442e0397f4f4d2c40 (patch)
tree129fa0bb0f18604bd378724794c855e8e4d230dc /module/vcomponent/primitive.scm
parentStart moving to scheme structs. (diff)
downloadcalp-7539f8c8804849294e100c5442e0397f4f4d2c40.tar.gz
calp-7539f8c8804849294e100c5442e0397f4f4d2c40.tar.xz
Disabled bunch of old stuff, new stuff kinda builds.
Diffstat (limited to '')
-rw-r--r--module/vcomponent/primitive.scm30
1 files changed, 17 insertions, 13 deletions
diff --git a/module/vcomponent/primitive.scm b/module/vcomponent/primitive.scm
index ad33a3be..e103feae 100644
--- a/module/vcomponent/primitive.scm
+++ b/module/vcomponent/primitive.scm
@@ -1,19 +1,23 @@
;;; Primitive export of symbols linked from C binary.
(define-module (vcomponent primitive)
- #:export (%vcomponent-children
- %vcomponent-push-child!
- %vcomponent-filter-children!
+ #:export #;
+ (%vcomponent-children ;
+ %vcomponent-push-child! ;
+ %vcomponent-filter-children! ;
+ ;
+ %vcomponent-parent ;
+ ;
+ %vcomponent-make ;
+ %vcomponent-get-type ;
+ %vcomponent-set-type! ;
+ ;
+ %vcomponent-get-attribute ;
+ %vcomponent-attribute-list ;
+ ;
+ %vcomponent-shallow-copy)
- %vcomponent-parent
-
- %vcomponent-make
- %vcomponent-get-type
- %vcomponent-set-type!
-
- %vcomponent-get-attribute
- %vcomponent-attribute-list
-
- %vcomponent-shallow-copy))
+ (make-vcomponent add-line! add-child! make-vline add-attribute! parse-path)
+ )
(load-extension "libguile-calendar" "init_lib")