mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-22 08:57:17 -06:00
fc567208f3
crash when involving foreign currency stocks. Scheme's inexact->exact function just converts the floating-point representation of a number into an exact rational (documented in the API Reference, Simple Generic Data Types, Numerical data types, Exact and Inexact Numbers), which isn't what we want. We want the number converted to exact directly from the string and to do that we have gnc-fq-helper preface it with #e. |
||
---|---|---|
.. | ||
CMakeLists.txt | ||
gnc-fq-check.in | ||
gnc-fq-dump | ||
gnc-fq-helper.in | ||
gnc-fq-update.in | ||
Quote_example.pl | ||
README |
-*-text-*- This directory contains assorted stock quote scripts. gnc-fq-check.in: Source file for gnc-fq-check which is a perl script that allows gnucash to determine if Finance::Quote is installed properly. The responses is a scheme form. gnc-fq-dump: A perl script that retrieves a quote from Finance::Quote and dumps the response to the terminal. Its useful for determining problems with F::Q. gnc-fq-helper.in: Source file for gnc-fq-helper which is a perl script that allows gnucash to communicate with Finance::Quote over pipes from guile. The requests and responses are scheme forms. gnc-fq-update.in: Source file for gnc-fq-update which is a perl script that updates Finance::Quote from CPAN.