diff options
Diffstat (limited to 'plugins/perl/perl.c')
-rw-r--r-- | plugins/perl/perl.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/perl/perl.c b/plugins/perl/perl.c index bda3f6f2..3c1ed192 100644 --- a/plugins/perl/perl.c +++ b/plugins/perl/perl.c @@ -1042,7 +1042,7 @@ XS (XS_Xchat_hook_fd) dXSARGS; - if (items != 4) { + if (items != 5) { hexchat_print (ph, "Usage: Xchat::Internal::hook_fd(fd, callback, flags, userdata)"); } else { @@ -1423,15 +1423,15 @@ perl_load_file (char *filename) thread_mbox ("Cannot open " PERL_DLL "!\n\n" "You must have a Visual C++ build of Perl " PERL_REQUIRED_VERSION " installed in order to\n" - "run Perl scripts.\n\n" - "https://github.com/hexchat/hexchat/downloads\n\n" + "run Perl scripts. A reboot may be required.\n\n" + "http://hexchat.org/downloads.html\n\n" "I have found Perl 5.6, but that is too old."); } else { thread_mbox ("Cannot open " PERL_DLL "!\n\n" "You must have a Visual C++ build of Perl " PERL_REQUIRED_VERSION " installed in order to\n" - "run Perl scripts.\n\n" - "https://github.com/hexchat/hexchat/downloads\n\n" + "run Perl scripts. A reboot may be required.\n\n" + "http://hexchat.org/downloads.html\n\n" "Make sure Perl's bin directory is in your PATH."); } } |