From: bw1 Date: Sun, 31 Jan 2021 20:10:49 +0000 (+0100) Subject: [lastfm] move use strict X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=c8d342400e85c287e25dfd194fe7a16b537d70b1;p=irssi-scripts.irssi.org.git [lastfm] move use strict --- diff --git a/scripts/lastfm.pl b/scripts/lastfm.pl index 34378ce..079ceb3 100644 --- a/scripts/lastfm.pl +++ b/scripts/lastfm.pl @@ -1,4 +1,7 @@ # vim: set expandtab: +use strict; +use warnings; +no warnings 'closure'; use vars qw($VERSION %IRSSI); $VERSION = "5.9"; %IRSSI = ( @@ -246,9 +249,6 @@ sub DEBUG { Irssi::settings_get_bool("lastfm_debug"); }; -use strict; -use warnings; -no warnings 'closure'; use Data::Dumper; use Encode; use HTML::Entities;