summaryrefslogtreecommitdiffstats
path: root/parser.l
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-03-14 02:45:20 -0700
committerKaz Kylheku <kaz@kylheku.com>2014-03-14 02:45:20 -0700
commita8b0e36b1760e51a8a3a25d4e22a325e407ef3d4 (patch)
tree181e7880cabac7b05ea72a7e81578c291235bfdd /parser.l
parent9cfd4e0adf28ad932b2a99886c1aae96715669a3 (diff)
downloadtxr-a8b0e36b1760e51a8a3a25d4e22a325e407ef3d4.tar.gz
txr-a8b0e36b1760e51a8a3a25d4e22a325e407ef3d4.tar.bz2
txr-a8b0e36b1760e51a8a3a25d4e22a325e407ef3d4.zip
* parser.l (regex_parse, lisp_parse): Fix neglected handling of
optional arguments. This problem can cause the symbol : to be planted as the std_error stream, resulting in an error loop that blows the stack. * regex.c (regex_compile): Likewise.
Diffstat (limited to 'parser.l')
-rw-r--r--parser.l5
1 files changed, 4 insertions, 1 deletions
diff --git a/parser.l b/parser.l
index 3c4b7159..f8d08454 100644
--- a/parser.l
+++ b/parser.l
@@ -910,6 +910,7 @@ val regex_parse(val string, val error_stream)
yyin_stream = make_string_byte_input_stream(parse_string);
errors = 0;
lineno = 1;
+ error_stream = default_bool_arg(error_stream);
std_error = if3(error_stream == t, std_output, or2(error_stream, std_null));
{
int gc = gc_state(0);
@@ -924,9 +925,10 @@ val regex_parse(val string, val error_stream)
return errors ? nil : get_spec();
}
-val lisp_parse(val source, val error_stream)
+val lisp_parse(val source_in, val error_stream)
{
uses_or2;
+ val source = default_bool_arg(source_in);
val input_stream = if3(stringp(source),
make_string_byte_input_stream(source),
or2(source, std_input));
@@ -938,6 +940,7 @@ val lisp_parse(val source, val error_stream)
yyin_stream = make_catenated_stream(list(secret_token_stream, input_stream, nao));
errors = 0;
lineno = 1;
+ error_stream = default_bool_arg(error_stream);
std_error = if3(error_stream == t, std_output, or2(error_stream, std_null));
{
int gc = gc_state(0);