Changeset e73e165
- Timestamp:
- 2013-11-11T22:46:36Z (11 years ago)
- Branches:
- master
- Children:
- 434a2d0
- Parents:
- 51f937e (diff), d4a4f1a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_channel.c
r51f937e re73e165 35 35 { 36 36 irc_channel_t *ic; 37 set_t *s; 37 38 38 39 if( !irc_channel_name_ok( name ) || irc_channel_by_name( irc, name ) ) … … 49 50 50 51 set_add( &ic->set, "auto_join", "false", set_eval_bool, ic ); 51 set_add( &ic->set, "type", "control", set_eval_channel_type, ic ); 52 53 s = set_add( &ic->set, "type", "control", set_eval_channel_type, ic ); 54 s->flags |= SET_NOSAVE; /* Layer violation (XML format detail) */ 52 55 53 56 if( name[0] == '&' )
Note: See TracChangeset
for help on using the changeset viewer.