From: Geir Arne Aasen Date: Wed, 20 Aug 2025 17:00:58 +0000 (+0200) Subject: Fixed the operator from the original code, and indentation X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=3ef32f620fb9df4ea9033b1bfaa9084f5d81952f;p=irssi-scripts.irssi.org.git Fixed the operator from the original code, and indentation --- diff --git a/scripts/autoop.pl b/scripts/autoop.pl index 623606c..ce37e70 100644 --- a/scripts/autoop.pl +++ b/scripts/autoop.pl @@ -98,11 +98,11 @@ sub load_autoops { %opnicks = (); open(CONF, "<", "$file") or return; while (my $line = ) { - chomp($line); - if ($line !=~ /^\s*$/) { - cmd_autoop($line); - $count++; - } + chomp($line); + if ($line !~ /^\s*$/) { + cmd_autoop($line); + $count++; + } } close(CONF);