summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--parser.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/parser.c b/parser.c
index b56a3d6d..aeaad578 100644
--- a/parser.c
+++ b/parser.c
@@ -382,19 +382,19 @@ static void load_rcfile(val name)
if (!funcall1(path_exists_p, name))
return;
- if (!funcall1(path_private_to_me_p, name)) {
- format(std_output,
- lit("** possible security problem: ~a is writable to others\n"),
- name, nao);
- return;
- }
-
uw_catch_begin (catch_syms, sy, va);
open_txr_file(name, &lisp_p, &resolved_name, &stream);
- if (stream)
+ if (stream) {
+ if (!funcall1(path_private_to_me_p, statf(stream))) {
+ format(std_output,
+ lit("** possible security problem: ~a is writable to others\n"),
+ name, nao);
+ } else {
read_eval_stream(stream, std_output, nil);
+ }
+ }
uw_catch(sy, va)
{