diff options
author | John Wiegley <johnw@newartisans.com> | 2004-09-23 21:08:42 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-09-23 21:08:42 -0400 |
commit | c57bfb72c3fd0c40bab1c47503c7f22c6a79a643 (patch) | |
tree | 4b3965e5df8bc9a5c58160f6ac8e08a542466df0 /python.cc | |
parent | 02580c2efbad9b364ab0dfa535c5fe0577cb818d (diff) | |
download | fork-ledger-c57bfb72c3fd0c40bab1c47503c7f22c6a79a643.tar.gz fork-ledger-c57bfb72c3fd0c40bab1c47503c7f22c6a79a643.tar.bz2 fork-ledger-c57bfb72c3fd0c40bab1c47503c7f22c6a79a643.zip |
moved entry hooking mechanism to journal_t; further improvements to "entry"
Diffstat (limited to 'python.cc')
-rw-r--r-- | python.cc | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -28,6 +28,7 @@ void export_walk(); void export_format(); void export_valexpr(); void export_datetime(); +void export_autoxact(); void initialize_ledger_for_python() { @@ -48,6 +49,7 @@ void initialize_ledger_for_python() export_format(); export_valexpr(); export_datetime(); + export_autoxact(); module_initialized = true; } |