Ignore:
Timestamp:
Jul 17, 2009, 11:53:34 PM (15 years ago)
Author:
Nelson Elhage <nelhage@mit.edu>
Branches:
master, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
2be605a
Parents:
eb6cedc
Message:
Update IRC and Jabber for the new BarnOwl::$command().

Both modules relied on the fact that BarnOwl::$command() tokenized its
argument. In both cases, the fix is as simple as replacing '...' with
qw(...).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • perl/modules/Jabber/lib/BarnOwl/Module/Jabber.pm

    rb73ce70 r96f7b07  
    321321
    322322sub register_keybindings {
    323     BarnOwl::bindkey("recv j command start-command jwrite ");
     323    BarnOwl::bindkey(qw(recv j command start-command jwrite));
    324324}
    325325
    326326sub register_filters {
    327     BarnOwl::filter('jabber type ^jabber$');
     327    BarnOwl::filter(qw(jabber type ^jabber$));
    328328}
    329329
Note: See TracChangeset for help on using the changeset viewer.