diff options
author | Rich Healey <richh@boxdice.com.au> | 2011-01-07 03:13:41 +0000 |
---|---|---|
committer | Rich Healey <richh@boxdice.com.au> | 2011-01-07 03:13:41 +0000 |
commit | be164408bab4128c4e67b6ac2e0f0183702c1790 (patch) | |
tree | b4605950836c3f094bb36b5a3e85378613c98d7f /auto-server | |
parent | Merge branch 'tab_completion' (diff) | |
download | irssi-scripts-be164408bab4128c4e67b6ac2e0f0183702c1790.tar.gz irssi-scripts-be164408bab4128c4e67b6ac2e0f0183702c1790.zip |
- is a valid character in a channel name.
Diffstat (limited to 'auto-server')
-rw-r--r-- | auto-server/auto_server.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auto-server/auto_server.pl b/auto-server/auto_server.pl index a9f6645..447a131 100644 --- a/auto-server/auto_server.pl +++ b/auto-server/auto_server.pl @@ -135,7 +135,7 @@ sub join_plus { # parse out channel name from args: my $channel; - if ($args =~ m/^(#?[#a-zA-Z0-9]+)/) { + if ($args =~ m/^(#?[#a-zA-Z0-9-]+)/) { $channel = $1; _debug_print ("Channel is: $channel"); } |