summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog19
-rw-r--r--Makefile3
-rw-r--r--eval.c4
-rw-r--r--lisplib.c3
-rw-r--r--parser.c9
-rw-r--r--parser.h2
-rw-r--r--txr.114
-rw-r--r--txr.c4
8 files changed, 45 insertions, 13 deletions
diff --git a/ChangeLog b/ChangeLog
index 758ad8f0..3ff6448f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,22 @@
+2015-05-07 Kaz Kylheku <kaz@kylheku.com>
+
+ * Makefile (LISP_TO_C_STRING): Strip comments, but not comment lines,
+ so line numbers don't change.
+
+ * eval.c (eval_init): Fix registrations of lisp-parse and read.
+
+ * lisplib.c (place_instantiate): Give name to parsed string stream
+ using new lisp_parse argument.
+
+ * parser.c (lisp_parse): Takes new argument to override name.
+
+ * parser.h (lisp_parse): Declaration updated.
+
+ * txr.c (txr_main): Call lisp_parse with four args, defaulting
+ the new one.
+
+ * txr.1: Documented new argument.
+
2015-05-06 Kaz Kylheku <kaz@kylheku.com>
New macro-based framework for assignment places.
diff --git a/Makefile b/Makefile
index faa3b37a..e66f9d47 100644
--- a/Makefile
+++ b/Makefile
@@ -111,8 +111,7 @@ endef
define LISP_TO_C_STRING
$(call ABBREV,L2C)
$(V)echo "const wchli_t *${@:.h=}_code = wli(" > $@
-$(V)sed -n -e '/^(/,$$p' $< | \
- sed -e 's/["\\]/\\&/g' -e 's/$$/\\n/' -e 's/.*/"&"/' >> $@
+$(V)sed -e 's/;.*//' -e 's/["\\]/\\&/g' -e 's/$$/\\n/' -e 's/.*/"&"/' $< >> $@
$(V)echo ");" >> $@
endef
diff --git a/eval.c b/eval.c
index 2ff257cc..d921e47e 100644
--- a/eval.c
+++ b/eval.c
@@ -4131,8 +4131,8 @@ void eval_init(void)
func_n4o(hash_update_1, 3));
reg_fun(intern(lit("eval"), user_package), func_n2o(eval_intrinsic, 1));
- reg_fun(intern(lit("lisp-parse"), user_package), func_n3o(lisp_parse, 0));
- reg_fun(intern(lit("read"), user_package), func_n3o(lisp_parse, 0));
+ reg_fun(intern(lit("lisp-parse"), user_package), func_n4o(lisp_parse, 0));
+ reg_fun(intern(lit("read"), user_package), func_n4o(lisp_parse, 0));
reg_fun(intern(lit("expand"), system_package), func_n2o(expand, 1));
reg_fun(intern(lit("macro-form-p"), user_package), func_n2o(macro_form_p, 1));
reg_fun(intern(lit("macroexpand-1"), user_package),
diff --git a/lisplib.c b/lisplib.c
index d6b7876a..1be90260 100644
--- a/lisplib.c
+++ b/lisplib.c
@@ -66,7 +66,8 @@ static void set_place_dlt_entries(val dlt, val fun)
static val place_instantiate(val dlt)
{
set_place_dlt_entries(dlt, nil);
- return eval_intrinsic(lisp_parse(static_str(place_code), std_error, nil), nil);
+ return eval_intrinsic(lisp_parse(static_str(place_code), std_error,
+ colon_k, lit("place.tl")), nil);
}
void lisplib_init(void)
diff --git a/parser.c b/parser.c
index 8a2a5d5b..4bed7be9 100644
--- a/parser.c
+++ b/parser.c
@@ -118,7 +118,7 @@ val regex_parse(val string, val error_stream)
return parser.errors ? nil : parser.syntax_tree;
}
-val lisp_parse(val source_in, val error_stream, val error_return_val)
+val lisp_parse(val source_in, val error_stream, val error_return_val, val name_in)
{
uses_or2;
val source = default_bool_arg(source_in);
@@ -126,9 +126,10 @@ val lisp_parse(val source_in, val error_stream, val error_return_val)
make_string_byte_input_stream(source),
or2(source, std_input));
val secret_token_stream = make_string_byte_input_stream(lit("@\x01" "E"));
- val name = if3(stringp(source),
- lit("string"),
- stream_get_prop(input_stream, name_k));
+ val name = or2(default_bool_arg(name_in),
+ if3(stringp(source),
+ lit("string"),
+ stream_get_prop(input_stream, name_k)));
val stream = make_catenated_stream(list(secret_token_stream, input_stream, nao));
val saved_dyn = dyn_env;
parser_t parser;
diff --git a/parser.h b/parser.h
index 97748329..01e927fe 100644
--- a/parser.h
+++ b/parser.h
@@ -66,6 +66,6 @@ INLINE val rlcp(val to, val from)
}
val rlcp_tree(val to, val from);
val regex_parse(val string, val error_stream);
-val lisp_parse(val source, val error_stream, val error_return_val);
+val lisp_parse(val source, val error_stream, val error_return_val, val name);
val parser(val stream, val lineno);
void parse_init(void);
diff --git a/txr.1 b/txr.1
index f1c07fa6..02bf58c1 100644
--- a/txr.1
+++ b/txr.1
@@ -23464,7 +23464,7 @@ Examples of strings which are not absolute paths.
.coNP Function @ read
.synb
-.mets (read >> [ source >> [ error-stream <> [ error-return-value ]]])
+.mets (read >> [ source >> [ error-stream >> [ error-return-value <> [ name ]]]])
.syne
.desc
The
@@ -23488,6 +23488,18 @@ The optional
argument can be used to specify a stream to which
parse errors diagnostics are sent. If absent, the diagnostics are suppressed.
+The optional
+.meta name
+argument can be used to specify the file name which is used for reporting
+errors. If this argument is missing, the name is taken from the name
+property of the
+.meta source
+argument if it is a stream, or else the word
+.code string
+is used as the name if
+.meta source
+is a string.
+
If there are no parse errors, the function returns the parsed data
structure. If there are parse errors, and the
.meta error-return-value
diff --git a/txr.c b/txr.c
index 392fba95..03b11a89 100644
--- a/txr.c
+++ b/txr.c
@@ -530,7 +530,7 @@ int txr_main(int argc, char **argv)
spec_file = arg;
break;
case 'e':
- eval_intrinsic(lisp_parse(arg, std_error, colon_k),
+ eval_intrinsic(lisp_parse(arg, std_error, colon_k, colon_k),
make_env(bindings, nil, nil));
evaled = t;
break;
@@ -543,7 +543,7 @@ int txr_main(int argc, char **argv)
if3(c_chr(opt) == 'P',
pprinl,
tprint));
- pf(eval_intrinsic(lisp_parse(arg, std_error, colon_k),
+ pf(eval_intrinsic(lisp_parse(arg, std_error, colon_k, colon_k),
make_env(bindings, nil, nil)), std_output);
evaled = t;
}