diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1999-09-29 11:47:35 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1999-09-29 11:47:35 -0400 |
commit | 95586cc28c61df18b7a2cd2a9b3ee4c4c83aa583 (patch) | |
tree | 292eb191b3e53e39d8be1e1e546104122fbf1cfa /src/LYOptions.c | |
parent | 2b52e9e64b2fc32242c207a0784521b2cf6d1976 (diff) | |
download | lynx-snapshots-95586cc28c61df18b7a2cd2a9b3ee4c4c83aa583.tar.gz |
snapshot of project "lynx", label v2-8-3dev_10
Diffstat (limited to 'src/LYOptions.c')
-rw-r--r-- | src/LYOptions.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/LYOptions.c b/src/LYOptions.c index d199eea6..60fe6e4c 100644 --- a/src/LYOptions.c +++ b/src/LYOptions.c @@ -3986,11 +3986,11 @@ PUBLIC int postoptions ARGS1( * Exit: working around the previous document. * Being out of mainloop()/getfile() cycle, do things manually. */ - CTRACE(tfp, "\nLYOptions.c/postoptions(): exiting...\n"); - CTRACE(tfp, " need_reload = %s\n", - need_reload ? "TRUE" : "FALSE"); - CTRACE(tfp, " need_end_reload = %s\n", - need_end_reload ? "TRUE" : "FALSE"); + CTRACE((tfp, "\nLYOptions.c/postoptions(): exiting...\n")); + CTRACE((tfp, " need_reload = %s\n", + need_reload ? "TRUE" : "FALSE")); + CTRACE((tfp, " need_end_reload = %s\n", + need_end_reload ? "TRUE" : "FALSE")); /* Options menu was pushed before postoptions(), so pop-up. */ LYpop(newdoc); @@ -4070,7 +4070,7 @@ PUBLIC int postoptions ARGS1( if (need_reload == FALSE) { /* no uncache, already loaded */ - CTRACE(tfp, "LYOptions.c/postoptions(): now really exit.\n\n"); + CTRACE((tfp, "LYOptions.c/postoptions(): now really exit.\n\n")); return(NORMAL); } else { /* update HText cache */ @@ -4092,7 +4092,7 @@ PUBLIC int postoptions ARGS1( if (reloading == FALSE) { /* one more attempt to be smart enough: */ if (HTreparse_document()) { - CTRACE(tfp, "LYOptions.c/postoptions(): now really exit.\n\n"); + CTRACE((tfp, "LYOptions.c/postoptions(): now really exit.\n\n")); return(NORMAL); } } @@ -4101,7 +4101,7 @@ PUBLIC int postoptions ARGS1( /* uncache and load again */ HTuncache_current_document(); LYpush(newdoc, FALSE); - CTRACE(tfp, "LYOptions.c/postoptions(): now really exit.\n\n"); + CTRACE((tfp, "LYOptions.c/postoptions(): now really exit.\n\n")); return(NULLFILE); } |