aboutsummaryrefslogtreecommitdiffhomepage
path: root/parse_tree.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-03-18 14:14:32 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-03-20 21:32:02 -0700
commite5ef45e4c04b6126ea74c4010b2d8fe1c0b06cca (patch)
treed200c10a700c9cfae10d170a600acfda8508086a /parse_tree.h
parente780637cf42bc8d26e0e963f5ff84b11007459c5 (diff)
Rewrite parser_t::test_args and parser_t::eval_args to use new parser
Diffstat (limited to 'parse_tree.h')
-rw-r--r--parse_tree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse_tree.h b/parse_tree.h
index f6406be4..99c3bf29 100644
--- a/parse_tree.h
+++ b/parse_tree.h
@@ -37,7 +37,7 @@ struct parse_error_t
wcstring describe(const wcstring &src) const;
/** Return a string describing the error, suitable for presentation to the user, with the given prefix. If skip_caret is false, the offending line with a caret is printed as well */
- wcstring describe_with_prefix(const wcstring &src, const wcstring &prefix, bool skip_caret) const;
+ wcstring describe_with_prefix(const wcstring &src, const wcstring &prefix, bool is_interactive, bool skip_caret) const;
};
typedef std::vector<parse_error_t> parse_error_list_t;