Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • perlwrap.pm

    r5ff830a r9815e2e  
    8989input.
    9090
    91 =head2 start_editwin PROMPT CALLBACK
     91=head2 start_edit_win PROMPT CALLBACK
    9292
    9393Like C<start_question>, but displays C<PROMPT> on a line of its own
     
    122122
    123123Returns the number of colors this BarnOwl is capable of displaying
     124
     125=head2 add_dispatch FD CALLBACK
     126
     127Adds a file descriptor to C<BarnOwl>'s internal C<select()>
     128loop. C<CALLBACK> will be invoked whenever data is available to be
     129read from C<FD>.
     130
     131=head2 remove_dispatch FD
     132
     133Remove a file descriptor previously registered via C<add_dispatch>
    124134
    125135=cut
     
    652662=item $mainLoop
    653663
    654 Called on B<every pass> through the C<BarnOwl> main loop. Any
    655 functions with this hook should be very cheap, as they are very
    656 frequently by the runtime.
     664Called on every pass through the C<BarnOwl> main loop. This is
     665guaranteed to be called at least once/sec and may be called more
     666frequently.
    657667
    658668=item $getBuddyList
Note: See TracChangeset for help on using the changeset viewer.