Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added ; as a sequencing operator in valexprs | John Wiegley | 2009-03-03 | 1 | -2/+5 |
| | |||||
* | Fixed parsing of '(1, 2, (3, 4))' | John Wiegley | 2009-03-03 | 1 | -0/+9 |
| | |||||
* | Made error reporting while parsing more resilient | John Wiegley | 2009-03-03 | 1 | -6/+6 |
| | |||||
* | Added Python-style if/else expression keywords | John Wiegley | 2009-03-03 | 1 | -1/+35 |
| | |||||
* | Corrected warnings g++-4.3.3 was complaining about | John Wiegley | 2009-02-28 | 1 | -1/+3 |
| | |||||
* | Marked all strings needing internationalization | John Wiegley | 2009-02-25 | 1 | -13/+13 |
| | | | | | | | | | | | | | | | | These strings are now collected automagically in the file po/ledger.pot. If you'd like to produce a translation, just run this command after building Ledger: msginit -l LOCALE -o LANG.po -i po/ledger.pot Where LOCALE is a string like de or en_GB, and LANG is a short descriptive word for your language. Then send me this .po file so I can commit it to the Ledger sources (alternatively, you could maintain the file in a fork on GitHub), and setup the build script to format and install your new message catalog during a "make install". | ||||
* | Renamed O_COMMA to O_CONS, and changed semantics | John Wiegley | 2009-02-23 | 1 | -2/+3 |
| | | | | | | In the old scheme, nested values would simply flatten and concatenate, so that '((1, 2), 3) = (1, 2, 3)'. Now sublists are preserved, so that sequences may be passed as arguments to functions. | ||||
* | Parse '/' in an operator context as "div" | John Wiegley | 2009-02-15 | 1 | -12/+13 |
| | |||||
* | Fixed the operator precedence of several operators. | John Wiegley | 2009-02-09 | 1 | -100/+115 |
| | |||||
* | Removed reference to session_t from the iterators module. | John Wiegley | 2009-02-09 | 1 | -12/+14 |
| | |||||
* | Added support for value expression definitions. | John Wiegley | 2009-02-08 | 1 | -0/+3 |
| | | | | | | | | Example: ] expr f(x) := x + 100 ] expr f(100) 200 | ||||
* | Better semantics for the ?: ternary operator. | John Wiegley | 2009-02-08 | 1 | -6/+8 |
| | |||||
* | Added support for metadata and tagging, and made regexs a first-class type. | John Wiegley | 2009-02-01 | 1 | -8/+28 |
| | |||||
* | Revised the way that parsing flags get passed around. | John Wiegley | 2009-01-29 | 1 | -29/+28 |
| | |||||
* | Removed some extraneous code. | John Wiegley | 2009-01-22 | 1 | -6/+4 |
| | |||||
* | Correctly report the line context when there is a valexpr parsing error. | John Wiegley | 2009-01-22 | 1 | -4/+14 |
| | |||||
* | Allow function calls without arguments in the parser. | John Wiegley | 2009-01-22 | 1 | -14/+3 |
| | |||||
* | Corrected a parse-time optimization of "! CONSTANT". | John Wiegley | 2009-01-22 | 1 | -1/+1 |
| | |||||
* | Redid the way command-line arguments are processed. Before, Ledger used - and | John Wiegley | 2009-01-22 | 1 | -2/+14 |
| | | | | | | | | | | | | | | | -- to mean special things after the command verb was seen. But now, what used to be specified as this: ledger -n reg cash -payable -- shell Is now specified as this: ledger reg -n cash not payable @shell It could also be specified as: ledger -n reg \(cash and not payable\) and @shell | ||||
* | Increased copyright range to include 2009. | John Wiegley | 2009-01-20 | 1 | -1/+1 |
| | |||||
* | Fixes to the way that EXPR_PARSE_SINGLE behaves. | John Wiegley | 2008-09-15 | 1 | -14/+12 |
| | |||||
* | Fixed the way that nested caught exceptions are rethrown, and how value | John Wiegley | 2008-09-15 | 1 | -6/+9 |
| | | | | expressions are displayed when errors are found in them. | ||||
* | Added value expression parsing flag EXPR_PARSE_SINGLE, which means to read | John Wiegley | 2008-09-14 | 1 | -4/+5 |
| | | | | | | only a single expression and then quit immediately. Useful for parsing expressions that begin with a left parenthesis and are known to end at the right parenthesis. | ||||
* | Ledger now builds without any significant warnings, except for one file. Some | John Wiegley | 2008-08-10 | 1 | -1/+1 |
| | | | | | of the warnings had to be temporarily disabled, but will be checked again once the code has moved into master. | ||||
* | Removed all use of USE_BOOST_PYTHON from the main Ledger sources. When Python | John Wiegley | 2008-08-08 | 1 | -32/+0 |
| | | | | | support is enabled for use within Ledger, it will do so through the current scoping mechanism. | ||||
* | Moved around most of the files so that source code is in src/, documentation | John Wiegley | 2008-08-05 | 1 | -0/+441 |
is in doc/, etc. |