Changeset 6df57d4 for functions.c


Ignore:
Timestamp:
Sep 30, 2011, 8:23:17 AM (13 years ago)
Author:
Jason Gross <jgross@mit.edu>
Children:
7483942
Parents:
57ad328
git-author:
Jason Gross <jgross@mit.edu> (05/27/11 17:39:59)
git-committer:
Jason Gross <jgross@mit.edu> (09/30/11 08:23:17)
Message:
Added a perl hook for :away

Note: The sepbar no longer distinguishes between AWAY, A-AWAY, and
Z-AWAY.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • functions.c

    r7803326 r6df57d4  
    992992}
    993993
     994bool owl_function_is_away(void)
     995{
     996  return owl_global_is_zaway(&g) ||
     997         owl_global_is_aaway(&g) ||
     998         owl_perlconfig_perl_call_bool("BarnOwl::Hooks::_get_is_away", 0, NULL);
     999}
     1000
    9941001void owl_function_quit(void)
    9951002{
Note: See TracChangeset for help on using the changeset viewer.