1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-14 03:04:17 -04:00

make printnicks global

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3044 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-12-04 20:52:33 +00:00 committed by cras
parent abd9e6f616
commit 54000e1908
2 changed files with 3 additions and 1 deletions

View File

@ -39,7 +39,7 @@
#define ishighalnum(c) ((unsigned char) (c) >= 128 || i_isalnum(c))
static GHashTable *printnicks;
GHashTable *printnicks;
/* convert _underlined_ and *bold* words (and phrases) to use real
underlining or bolding */

View File

@ -7,4 +7,6 @@ char *expand_emphasis(WI_ITEM_REC *item, const char *text);
char *channel_get_nickmode(CHANNEL_REC *channel, const char *nick);
extern GHashTable *printnicks;
#endif