summaryrefslogtreecommitdiff
path: root/src/utils.cc
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed another memory bug in by_payee_xactsJohn Wiegley2009-02-211-6/+12
|
* Compilation verification code only with debuggingJohn Wiegley2009-02-161-0/+2
| | | | | | Previously, --verify would work even if the sources were built with default options. However, in the interests of performance, --verify is now only available if --enable-debug was passed to configure.
* Fixed several unused value and param warningsJohn Wiegley2009-02-161-2/+2
|
* Added proper handling of SIGINT (C-c) and SIGPIPE (pager quits).John Wiegley2009-02-041-0/+17
|
* Largely removed all of Ledger's use of global variables, for the REPL's sake.John Wiegley2009-02-041-19/+3
|
* Simplified error context handling.John Wiegley2009-02-021-12/+0
|
* Changed many uses of "unsigned long" to std::size_t.John Wiegley2009-02-011-2/+2
|
* Stopped using the generic "unsigned int" in favor of more specific types.John Wiegley2009-01-291-2/+2
|
* Increased copyright range to include 2009.John Wiegley2009-01-201-1/+1
|
* Allow the environment variable LEDGER_DEBUG to enable debugging.John Wiegley2009-01-191-0/+10
|
* The ledger::string type now uses size_type for a length parameter instead ofJohn Wiegley2008-09-141-2/+2
| | | | "const int", which is not portable.
* Re-enabled the disabled expand_path routine.John Wiegley2008-08-171-11/+6
|
* Moved around most of the files so that source code is in src/, documentationJohn Wiegley2008-08-051-0/+716
is in doc/, etc.