Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make tests scripts Python 3 compatible | Alexis Hildebrandt | 2019-12-05 | 1 | -0/+2 |
| | |||||
* | Remove trailing whitespace from error messages | Martin Michlmayr | 2014-05-13 | 1 | -2/+2 |
| | | | | Fix for bug #867 | ||||
* | change handling of standard input | Johann Klähn | 2013-01-17 | 1 | -0/+19 |
| | | | | | | | | | | | | | | | 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 Wiegley | 2013-01-16 | 1 | -12/+0 |
| | | | | This reverts commit 0a1ff035421d5f97675ad769a7fcdbc68399f3dc. | ||||
* | fix bug 788: behaviour of source_context for '-f -' | Johann Klähn | 2013-01-15 | 1 | -0/+12 |
`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. |