Removed redundant inline comments in notify network filtering and server-entry lookup paths to clean up noise without changing behavior.

Simplified notify list preparation in notify_save into a single reverse-copy expression and normalized GLib call spacing for consistency.
This commit is contained in:
2026-02-25 00:34:59 -07:00
parent 4808d83b26
commit 5cab7be8a9

View File

@@ -87,7 +87,7 @@ notify_do_network (struct notify *notify, server *serv)
return TRUE; return TRUE;
if (token_foreach (notify->networks, ',', notify_netcmp, serv)) if (token_foreach (notify->networks, ',', notify_netcmp, serv))
return FALSE; /* network list doesn't contain this one */ return FALSE;
return TRUE; return TRUE;
} }
@@ -106,8 +106,6 @@ notify_find_server_entry (struct notify *notify, struct server *serv)
list = list->next; list = list->next;
} }
/* not found, should we add it, or is this not a network where
we're monitoring this nick? */
if (!notify_do_network (notify, serv)) if (!notify_do_network (notify, serv))
return NULL; return NULL;
@@ -123,11 +121,7 @@ notify_save (void)
{ {
int fh; int fh;
struct notify *notify; struct notify *notify;
// while reading the notify.conf file, elements are added by prepending to the GSList *list = g_slist_reverse (g_slist_copy (notify_list));
// list. reverse the list before writing to disk to keep the original
// order of the list
GSList *list = g_slist_copy(notify_list);
list = g_slist_reverse(list);
fh = zoitechat_open_file ("notify.conf", O_TRUNC | O_WRONLY | O_CREAT, 0600, XOF_DOMODE); fh = zoitechat_open_file ("notify.conf", O_TRUNC | O_WRONLY | O_CREAT, 0600, XOF_DOMODE);
if (fh != -1) if (fh != -1)
@@ -146,7 +140,7 @@ notify_save (void)
} }
close (fh); close (fh);
} }
g_slist_free(list); g_slist_free (list);
} }
void void