diff options
author | John Wiegley <johnw@newartisans.com> | 2012-08-02 16:13:58 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-08-02 16:13:58 -0500 |
commit | afc023406ad658f6f9a2cda69d7d6ce9492bc3af (patch) | |
tree | 6c8659730d9694af48f7eab48b79d7c89070a7ef /src/textual.cc | |
parent | 2de6af2761672c1b0697e285de20b291a3fc3a55 (diff) | |
download | fork-ledger-afc023406ad658f6f9a2cda69d7d6ce9492bc3af.tar.gz fork-ledger-afc023406ad658f6f9a2cda69d7d6ce9492bc3af.tar.bz2 fork-ledger-afc023406ad658f6f9a2cda69d7d6ce9492bc3af.zip |
Always store absolute paths internally
Diffstat (limited to 'src/textual.cc')
-rw-r--r-- | src/textual.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/textual.cc b/src/textual.cc index a5ae2f68..0ead9232 100644 --- a/src/textual.cc +++ b/src/textual.cc @@ -532,9 +532,8 @@ void instance_t::option_directive(char * line) *p++ = '\0'; } - path abs_path(filesystem::absolute(context.pathname, - context.current_directory)); - if (! process_option(abs_path.string(), line + 2, *context.scope, p, line)) + if (! process_option(context.pathname.string(), line + 2, *context.scope, + p, line)) throw_(option_error, _f("Illegal option --%1%") % (line + 2)); } |