mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 12:23:37 +02:00
run syncscripts.sh
autoop 1.10 -> 1.11 mail 2.92 -> 2.93 scriptassist 2022053100 -> 2023111700
This commit is contained in:
parent
6c72dc14fa
commit
d145f24c22
3 changed files with 265 additions and 144 deletions
|
|
@ -5,7 +5,7 @@ use Irssi;
|
|||
use strict;
|
||||
use vars qw($VERSION %IRSSI);
|
||||
|
||||
$VERSION = "1.10";
|
||||
$VERSION = "1.11";
|
||||
%IRSSI = (
|
||||
authors => 'Timo Sirainen & Jostein Kjønigsen',
|
||||
name => 'autoop',
|
||||
|
|
@ -98,10 +98,11 @@ sub load_autoops {
|
|||
%opnicks = ();
|
||||
open(CONF, "<", "$file") or return;
|
||||
while (my $line = <CONF>) {
|
||||
if ($line !=~ /^\s*$/) {
|
||||
cmd_autoop($line);
|
||||
$count++;
|
||||
}
|
||||
chomp($line);
|
||||
if ($line !~ /^\s*$/) {
|
||||
cmd_autoop($line);
|
||||
$count++;
|
||||
}
|
||||
}
|
||||
close(CONF);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue