mirror of
https://github.com/irssi/irssi.git
synced 2026-08-15 14:42:08 +02:00
Moved fe_perl module to use Irssi::UI .. this breaks several scripts that
use UI-specific code, but simply adding the "use Irssi::UI;" after use Irssi; should work. make install now removes libfe_perl.* files from global module directory, but if you have it somewhere else you should manually remove it. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1582 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
d7342a6c4f
commit
89d7498019
15 changed files with 157 additions and 124 deletions
24
src/perl/ui/UI.pm
Normal file
24
src/perl/ui/UI.pm
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
#
|
||||
# Perl interface to irssi functions.
|
||||
#
|
||||
|
||||
package Irssi::UI;
|
||||
|
||||
use strict;
|
||||
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
|
||||
|
||||
$VERSION = "0.20";
|
||||
|
||||
require Exporter;
|
||||
require DynaLoader;
|
||||
|
||||
@ISA = qw(Exporter DynaLoader);
|
||||
@EXPORT = qw(active_win active_server print command printformat);
|
||||
@EXPORT_OK = qw();
|
||||
|
||||
bootstrap Irssi::UI $VERSION;
|
||||
|
||||
Irssi::UI::init();
|
||||
|
||||
1;
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue