mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 20:00:23 +02:00
more changes from int xx:1 to unsigned int xx:1
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@861 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
972c06ba17
commit
1fd6f8faf6
10 changed files with 40 additions and 40 deletions
|
|
@ -24,7 +24,7 @@ typedef struct {
|
|||
GSList *waiting_channels; /* list of "<server tag> <channel>" */
|
||||
|
||||
int lines;
|
||||
int destroying:1;
|
||||
unsigned int destroying:1;
|
||||
|
||||
/* window-specific command line history */
|
||||
GList *cmdhist, *histpos;
|
||||
|
|
|
|||
|
|
@ -9,10 +9,10 @@ typedef struct {
|
|||
char *color; /* if starts with number, \003 is automatically
|
||||
inserted before it. */
|
||||
|
||||
int nick:1; /* hilight only the nick, not a full line - works only with msgs. */
|
||||
int nickmask:1; /* `text 'is a nick mask - colorify the nick */
|
||||
int fullword:1; /* match `text' only for full words */
|
||||
int regexp:1; /* `text' is a regular expression */
|
||||
unsigned int nick:1; /* hilight only the nick, not a full line - works only with msgs. */
|
||||
unsigned int nickmask:1; /* `text 'is a nick mask - colorify the nick */
|
||||
unsigned int fullword:1; /* match `text' only for full words */
|
||||
unsigned int regexp:1; /* `text' is a regular expression */
|
||||
} HILIGHT_REC;
|
||||
|
||||
extern GSList *hilights;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue