1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

Merge pull request #1132 from horgh/horgh/rm-funcs

Remove an unused function and deprecate another
This commit is contained in:
ailin-nemui 2019-10-15 11:03:04 +02:00 committed by GitHub
commit 453b648e7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 6 deletions

View File

@ -270,11 +270,6 @@ char *gslist_to_string(GSList *list, const char *delimiter)
return ret;
}
void hash_save_key(char *key, void *value, GSList **list)
{
*list = g_slist_append(*list, key);
}
/* remove all the options from the optlist hash table that are valid for the
* command cmd */
GList *optlist_remove_known(const char *cmd, GHashTable *optlist)

View File

@ -50,7 +50,7 @@ int match_wildcards(const char *mask, const char *data);
/* octal <-> decimal conversions */
int octal2dec(int octal);
int dec2octal(int decimal);
int dec2octal(int decimal) G_GNUC_DEPRECATED;
/* Get time in human readable form with localtime() + asctime() */
char *my_asctime(time_t t);