From: NeilBrown Date: Mon, 22 May 2023 11:18:06 +0000 (+1000) Subject: C code - remove stray LOG() calls. X-Git-Url: http://git.neil.brown.name/?a=commitdiff_plain;h=795a80dc2859c6c2809d71094938ab947f0ed863;p=edlib.git C code - remove stray LOG() calls. I don't think I want any of these. Signed-off-by: NeilBrown --- diff --git a/display-x11-xcb.c b/display-x11-xcb.c index 16a5457d..dfeaf575 100644 --- a/display-x11-xcb.c +++ b/display-x11-xcb.c @@ -604,8 +604,7 @@ DEF_CMD(xcb_clear) cairo_paint(dest->ctx); dest->bg.g = -1; } - } else - LOG("ERROR neither src or bg"); + } pane_damaged(ci->home, DAMAGED_POSTORDER); if (!dest->need_update) diff --git a/lib-aspell.c b/lib-aspell.c index c345670a..8ec38d98 100644 --- a/lib-aspell.c +++ b/lib-aspell.c @@ -206,7 +206,6 @@ DEF_CMD(aspell_set_dict) if (!lang) return Enoarg; - LOG("lang = %s", lang); conf2 = aspell_config_clone(spell_config); aspell_config_replace(conf2, "lang", lang); ret = new_aspell_speller(conf2); diff --git a/lib-autosave.c b/lib-autosave.c index 9a030087..a290c31e 100644 --- a/lib-autosave.c +++ b/lib-autosave.c @@ -118,7 +118,6 @@ DEF_CMD(autosave_dir_delete) if (!fn || *fn != '/') return 2; - LOG("Forgetting autosave for %s", fn); dir = pane_attr_get(ci->focus, "dirname"); base = pane_mark_attr(ci->focus, m, "name"); if (dir && base) {