Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use #pragma once | Alexis Hildebrandt | 2023-04-10 | 1 | -4/+1 |
| | |||||
* | Update copyright year | Alexis Hildebrandt | 2023-02-02 | 1 | -1/+1 |
| | | | | [skip ci] | ||||
* | Fix IDENT format comment to match recent change 35713fe79 | Donald Lam | 2023-01-27 | 1 | -1/+1 |
| | |||||
* | Update copyright statement for 2022 | Alexis Hildebrandt | 2022-07-02 | 1 | -1/+1 |
| | |||||
* | Change header guard names to use `INCLUDED_` prefix | Phil Newton | 2022-04-06 | 1 | -3/+3 |
| | | | | Fixes #2049 | ||||
* | Use correct int return type for stream input operations | kanreki | 2021-12-08 | 1 | -1/+1 |
| | | | | | | | | This makes it safe to compare results to -1 to indicate EOF, regardless of whether char is considered signed or unsigned; and so eliminates compiler warnings on platforms such as ARM. Fixes bug #2058. | ||||
* | [misc] Update year in copyright notice to 2017 | Alexis Hildebrandt | 2018-01-27 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | [misc] Update year in copyright notice to 2017 | Alexis Hildebrandt | 2017-01-05 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | [misc] Update year in copyright notice to 2016 | Alexis Hildebrandt | 2016-01-02 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | Bump copyright notice to 2015 | Alexis Hildebrandt | 2014-12-27 | 1 | -1/+1 |
| | | | | | | The following script makes it a no-brainer: % NEXT_YEAR=2015; ag -l 'Copyright.*Wiegley' \ | xargs sed -i '' -e "s/\(Copyright.*\)-20[0-9]\{2\}/\1-${NEXT_YEAR}/" | ||||
* | Bump copyright information to 2014 | Alexis Hildebrandt | 2014-02-02 | 1 | -1/+1 |
| | |||||
* | Bump copyright information to 2013 | John Wiegley | 2013-02-18 | 1 | -1/+1 |
| | |||||
* | Increased file copyrights to 2012 | John Wiegley | 2012-02-29 | 1 | -1/+1 |
| | |||||
* | Report an error in the case of '(1' (missing rparen) | John Wiegley | 2011-11-10 | 1 | -3/+6 |
| | | | | Fixes #557 | ||||
* | Added initial support for lambda functions | John Wiegley | 2010-09-06 | 1 | -1/+3 |
| | |||||
* | Minor simplifications to valexpr parser | John Wiegley | 2010-09-05 | 1 | -7/+4 |
| | | | | | The most significant change is the way CONS sequences are parsed, and that now instead of =/:=, the operators are ==/=. | ||||
* | Untabified all source files | John Wiegley | 2010-06-11 | 1 | -42/+42 |
| | |||||
* | Improved error reporting in the expression parser | John Wiegley | 2010-05-22 | 1 | -3/+4 |
| | | | | Fixes 15A80F68-F233-49D9-AF0C-9908BB6903BA | ||||
* | Updated copyrights to 2003-2010 | John Wiegley | 2010-03-05 | 1 | -1/+1 |
| | |||||
* | Redesigned the expr_t, predicate_t, query_t classes | John Wiegley | 2009-11-09 | 1 | -1/+1 |
| | |||||
* | Removed a bunch of empty comments | John Wiegley | 2009-11-08 | 1 | -9/+0 |
| | |||||
* | Changed some debug text | John Wiegley | 2009-10-28 | 1 | -2/+2 |
| | |||||
* | Revert "Added % suffix operator, as in "$1.00 * 10%"" | John Wiegley | 2009-06-21 | 1 | -1/+1 |
| | | | | This reverts commit 0e9f782a05ab9bc892af40abef84346a16d3baec. | ||||
* | Added % suffix operator, as in "$1.00 * 10%" | John Wiegley | 2009-05-26 | 1 | -1/+1 |
| | |||||
* | Added ; as a sequencing operator in valexprs | John Wiegley | 2009-03-03 | 1 | -0/+1 |
| | |||||
* | Added Python-style if/else expression keywords | John Wiegley | 2009-03-03 | 1 | -0/+3 |
| | |||||
* | Parse '/' in an operator context as "div" | John Wiegley | 2009-02-15 | 1 | -1/+2 |
| | |||||
* | Added support for value expression definitions. | John Wiegley | 2009-02-08 | 1 | -0/+1 |
| | | | | | | | | Example: ] expr f(x) := x + 100 ] expr f(100) 200 | ||||
* | Added support for metadata and tagging, and made regexs a first-class type. | John Wiegley | 2009-02-01 | 1 | -0/+1 |
| | |||||
* | Added documentation stubs for all include files and classes. | John Wiegley | 2009-01-31 | 1 | -0/+19 |
| | |||||
* | Correctly report the line context when there is a valexpr parsing error. | John Wiegley | 2009-01-22 | 1 | -2/+2 |
| | |||||
* | Accept &&/and for &, ||/or for |, and not for !. Also improved error | John Wiegley | 2009-01-22 | 1 | -4/+5 |
| | | | | reporting in the tokenizer. | ||||
* | Parse != as !(==) and !~ as !(=~), for simplicity's sake. | John Wiegley | 2009-01-22 | 1 | -0/+1 |
| | |||||
* | Increased copyright range to include 2009. | John Wiegley | 2009-01-20 | 1 | -1/+1 |
| | |||||
* | Moved around most of the files so that source code is in src/, documentation | John Wiegley | 2008-08-05 | 1 | -0/+116 |
is in doc/, etc. |