Removed obsolete commented-out lines from fe_cleanup() so the function no longer contains dead commented code.

Removed an unnecessary explanatory comment above the unconditional early return in log_handler(), leaving only the active behavior.

Removed an unneeded section marker comment before fe_idle() to keep surrounding code cleaner.
This commit is contained in:
2026-02-25 02:34:50 -07:00
parent e62769b361
commit 6a02f578b6

View File

@@ -925,8 +925,6 @@ fe_main (void)
void void
fe_cleanup (void) fe_cleanup (void)
{ {
/* it's saved when pressing OK in setup.c */
/*palette_save ();*/
} }
void void
@@ -963,7 +961,6 @@ log_handler (const gchar *log_domain,
{ {
session *sess; session *sess;
/* if (getenv ("ZOITECHAT_WARNING_IGNORE")) this gets ignored sometimes, so simply just disable all warnings */
return; return;
sess = find_dialog (serv_list->data, "(warnings)"); sess = find_dialog (serv_list->data, "(warnings)");
@@ -977,8 +974,6 @@ log_handler (const gchar *log_domain,
#endif #endif
/* install tray stuff */
static int static int
fe_idle (gpointer data) fe_idle (gpointer data)
{ {