engine.scm - a few minor cosmetics

- drop export of non-existing symbol
- add a couple of comments
This commit is contained in:
Geert Janssens 2019-10-05 16:04:45 +02:00
parent 3d4cc63d73
commit e940ce8524

View File

@ -24,9 +24,11 @@
(load-extension "libgnucash-guile" "gnc_guile_bindings_init"))
(use-modules (sw_engine))
; Export the swig-wrapped symbols in the public interface of this module
(let ((i (module-public-interface (current-module))))
(module-use! i (resolve-interface '(sw_engine))))
;; gnc-numeric.scm
(export GNC-RND-FLOOR)
(export GNC-RND-CEIL)
(export GNC-RND-TRUNC)
@ -53,6 +55,7 @@
(export gnc:gnc-monetary-amount)
(export gnc:monetary-neg)
;; commodity-table.scm
(export GNC_COMMODITY_NS_CURRENCY)
(export GNC_COMMODITY_NS_NASDAQ)
(export GNC_COMMODITY_NS_NYSE)
@ -60,8 +63,6 @@
(export GNC_COMMODITY_NS_EUREX)
(export GNC_COMMODITY_NS_MUTUAL)
(export gnc:url->loaded-session)
;; engine-utilities.scm
(export gnc:account-map-descendants)
(export gnc:account-map-children)