diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-24 11:03:17 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-24 11:03:17 -0800 |
commit | 9e929c272579ad369b52c4a14f21895017e69176 (patch) | |
tree | 79aec79f90a0c160ab5319b74143f79f00af252e /txr.c | |
parent | 152aefb0086b3482acae19ab78545a4a29ae7c20 (diff) | |
download | txr-9e929c272579ad369b52c4a14f21895017e69176.tar.gz txr-9e929c272579ad369b52c4a14f21895017e69176.tar.bz2 txr-9e929c272579ad369b52c4a14f21895017e69176.zip |
Renaming global variables that denote symbols, such that they
have a _s suffix.
Diffstat (limited to 'txr.c')
-rw-r--r-- | txr.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -323,7 +323,7 @@ static int txr_main(int argc, char **argv) if (wcscmp(c_str(spec_file_str), L"-") != 0) { FILE *in = w_fopen(c_str(spec_file_str), L"r"); if (in == 0) - uw_throwf(file_error, lit("unable to open ~a"), spec_file_str, nao); + uw_throwf(file_error_s, lit("unable to open ~a"), spec_file_str, nao); yyin_stream = make_stdio_stream(in, spec_file_str, t, nil); } else { spec_file = L"stdin"; @@ -338,7 +338,7 @@ static int txr_main(int argc, char **argv) FILE *in = fopen(*argv, "r"); val name = string_utf8(*argv); if (in == 0) - uw_throwf(file_error, lit("unable to open ~a"), name, nao); + uw_throwf(file_error_s, lit("unable to open ~a"), name, nao); yyin_stream = make_stdio_stream(in, name, t, nil); spec_file = utf8_dup_from(*argv); } else { |