diff options
author | Marco Peereboom <marco@conformal.com> | 2011-10-28 09:08:33 -0500 |
---|---|---|
committer | Marco Peereboom <marco@conformal.com> | 2011-10-28 09:08:33 -0500 |
commit | 69d532669f868806810672b61b8b0252952fffd1 (patch) | |
tree | 6ebe6a310d1131255d05564135da0c2815873a82 | |
parent | 4b65c5f128cc168a85738031fb1d50d09cf50c33 (diff) | |
download | xombrero-69d532669f868806810672b61b8b0252952fffd1.tar.gz |
shut JS exceptions up
-rw-r--r-- | xxxterm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xxxterm.c b/xxxterm.c index a8825b7..5d3ea81 100644 --- a/xxxterm.c +++ b/xxxterm.c @@ -2431,9 +2431,9 @@ run_script(struct tab *t, char *s) DNPRINTF(XT_D_JS, "run_script: val %p\n", val); if (val == NULL) { es = js_ref_to_string(ctx, exception); - DNPRINTF(XT_D_JS, "run_script: exception %s\n", es); if (es) { - show_oops(t, "script exception: %s", es); + /* show_oops(t, "script exception: %s", es); */ + DNPRINTF(XT_D_JS, "run_script: exception %s\n", es); g_free(es); } return (1); |