mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
Merge pull request #1132 from horgh/horgh/rm-funcs
Remove an unused function and deprecate another
This commit is contained in:
commit
453b648e7e
@ -270,11 +270,6 @@ char *gslist_to_string(GSList *list, const char *delimiter)
|
|||||||
return ret;
|
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
|
/* remove all the options from the optlist hash table that are valid for the
|
||||||
* command cmd */
|
* command cmd */
|
||||||
GList *optlist_remove_known(const char *cmd, GHashTable *optlist)
|
GList *optlist_remove_known(const char *cmd, GHashTable *optlist)
|
||||||
|
@ -50,7 +50,7 @@ int match_wildcards(const char *mask, const char *data);
|
|||||||
|
|
||||||
/* octal <-> decimal conversions */
|
/* octal <-> decimal conversions */
|
||||||
int octal2dec(int octal);
|
int octal2dec(int octal);
|
||||||
int dec2octal(int decimal);
|
int dec2octal(int decimal) G_GNUC_DEPRECATED;
|
||||||
|
|
||||||
/* Get time in human readable form with localtime() + asctime() */
|
/* Get time in human readable form with localtime() + asctime() */
|
||||||
char *my_asctime(time_t t);
|
char *my_asctime(time_t t);
|
||||||
|
Loading…
Reference in New Issue
Block a user