diff options
author | portix <none@none> | 2012-10-03 00:11:24 +0200 |
---|---|---|
committer | portix <none@none> | 2012-10-03 00:11:24 +0200 |
commit | ce695d22ee822ad75f7d3c877c3bb8949a763cb1 (patch) | |
tree | db330000738724774a5ecc4908ecc4f0728b1ec4 /src | |
parent | 24ef749b95bfb684bdc465b8a6748873514a69b8 (diff) | |
download | dwb-ce695d22ee822ad75f7d3c877c3bb8949a763cb1.zip |
Remove debug messages from scripts.c
Diffstat (limited to 'src')
-rw-r--r-- | src/scripts.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/scripts.c b/src/scripts.c index 9ef1db0f..ec9b7f6c 100644 --- a/src/scripts.c +++ b/src/scripts.c @@ -976,7 +976,6 @@ util_markup_escape(JSContextRef ctx, JSObjectRef f, JSObjectRef thisObject, size escaped = g_markup_escape_text(string, -1); g_free(string); if (escaped != NULL) { - puts(escaped); JSValueRef ret = js_char_to_value(ctx, escaped); g_free(escaped); return ret; @@ -1804,7 +1803,7 @@ create_global_object() { { "dirNames", io_dir_names, kJSDefaultAttributes }, { "notify", io_notify, kJSDefaultAttributes }, { "error", io_error, kJSDefaultAttributes }, - { "statusBar", io_status_bar, kJSDefaultAttributes }, + { "statusBar", io_status_bar, kJSDefaultAttributes }, { 0, 0, 0 }, }; class = create_class("io", io_functions, NULL); |