summaryrefslogtreecommitdiff
path: root/src/error.cc
Commit message (Collapse)AuthorAgeFilesLines
* Expand the size of an arbitrary safety limitJohn Wiegley2024-01-191-1/+1
|
* Update copyright yearAlexis Hildebrandt2023-02-021-1/+1
| | | | [skip ci]
* Update copyright statement for 2022Alexis Hildebrandt2022-07-021-1/+1
|
* Implement cryptographic access to files using GPGMEMichael Raitza2020-10-301-4/+13
|
* Increase the error display text limitJohn Wiegley2020-04-261-1/+1
|
* Drop support for gcc 2 and earlierTim Landscheidt2019-01-251-5/+5
|
* [misc] Update year in copyright notice to 2017Alexis Hildebrandt2018-01-271-1/+1
| | | | [ci skip]
* [misc] Update year in copyright notice to 2017Alexis Hildebrandt2017-01-051-1/+1
| | | | [ci skip]
* [misc] Update year in copyright notice to 2016Alexis Hildebrandt2016-01-021-1/+1
| | | | [ci skip]
* Bump copyright notice to 2015Alexis Hildebrandt2014-12-271-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}/"
* Remove trailing whitespace from error messagesMartin Michlmayr2014-05-131-1/+1
| | | | Fix for bug #867
* Bump copyright information to 2014Alexis Hildebrandt2014-02-021-1/+1
|
* Bump copyright information to 2013John Wiegley2013-02-181-1/+1
|
* change handling of standard inputJohann Klähn2013-01-171-1/+1
| | | | | | | | | | | | | | | For `-f /dev/stdin`, the `pathname` of the parsing context will be empty as for any other streamed input. `instance_t::include_directive` did not work as expected for `-f /dev/stdin` and relative file names. One would expect them to be relative to the current directory rather than `/dev`. This will lead to `While parsing file ""` messages. This could be adjusted to read `While parsing standard input`, but maybe it's not worth the special cases. This commit also fixes bug 788: behaviour of source_context for '-f -'
* Revert "fix bug 788: behaviour of source_context for '-f -'"John Wiegley2013-01-161-1/+1
| | | | This reverts commit 0a1ff035421d5f97675ad769a7fcdbc68399f3dc.
* fix bug 788: behaviour of source_context for '-f -'Johann Klähn2013-01-151-1/+1
| | | | | | `session_t::read_data` did not set context.pathname to `/dev/stdin` for the special case `-f -`. I chose to adjust `source_context` too as there is no sensible context if no file name is provided.
* Switch to using Boost.FormatJohn Wiegley2012-05-141-2/+0
|
* Increased file copyrights to 2012John Wiegley2012-02-291-1/+1
|
* Corrected the type of a castJohn Wiegley2012-02-171-1/+1
|
* Cleanup whitespaceJohn Wiegley2011-08-181-2/+2
|
* Increased an assertion's length limitJohn Wiegley2011-05-301-1/+1
|
* Corrections to the regression testsJohn Wiegley2011-03-031-1/+1
|
* Fix for Boost.Filesystem v3John Wiegley2011-02-281-1/+1
|
* Untabified all source filesJohn Wiegley2010-06-111-12/+12
|
* Corrections to the way error strings are generatedJohn Wiegley2010-06-101-0/+1
|
* Updated copyrights to 2003-2010John Wiegley2010-03-051-1/+1
|
* Added a few more missing castsJohn Wiegley2009-10-311-3/+3
|
* Added two missing castsJohn Wiegley2009-10-311-1/+1
|
* Fixed many compiler warnings from g++ 4.4John Wiegley2009-10-251-15/+14
|
* Added some missing casts, upgraded to Boost 1.40John Wiegley2009-10-091-1/+2
|
* Enabled use of pre-compiled headers by defaultJohn Wiegley2009-03-101-0/+2
|
* Corrected warnings g++-4.3.3 was complaining aboutJohn Wiegley2009-02-281-7/+7
|
* If an error occurred in /dev/stdin, don't fopen itJohn Wiegley2009-02-271-1/+1
|
* Added a new source_context functionJohn Wiegley2009-02-261-0/+36
|
* Use a "format accumulator" for error stringsJohn Wiegley2009-02-211-1/+3
| | | | | | | | This makes it possible to internationalize strings while still using I/O streams. For example: std::cout << ACCUM(_("Hello to %1 and %2!") << "me" << "you") << std::endl;
* Simplified the textual parser, and improved metadata support.John Wiegley2009-02-041-7/+7
|
* Removed report_error() function and reordered context for parsing errors.John Wiegley2009-02-021-6/+0
|
* Moved error code into error.h.John Wiegley2009-02-021-0/+84