Changes in / [ee310eb:625802a]


Ignore:
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • dict.c

    raf1920fd r1cf3f8d3  
    179179  owl_dict_free_all(&d, NULL);
    180180
    181   /*  if (numfailed) printf("*** WARNING: failures encountered with owl_dict\n"); */
     181  //  if (numfailed) printf("*** WARNING: failures encountered with owl_dict\n");
    182182  printf("# END testing owl_dict (%d failures)\n", numfailed);
    183183  return(numfailed);
  • editwin.c

    raf1920fd rb2c1bd4  
    3636  e->echochar='\0';
    3737
    38   /* We get initialized multiple times, but we need to hold on to
    39      the callbacks, so we can't NULL them here. */
    4038  /*
     39    // We get initialized multiple times, but we need to hold on to
     40    // the callbacks, so we can't NULL them here.
    4141    e->command = NULL;
    4242    e->callback = NULL;
     
    116116    owl_function_error("Internal error: No editwin callback!");
    117117  } else {
    118     /* owl_function_error("text: |%s|", owl_editwin_get_text(e)); */
     118    // owl_function_error("text: |%s|", owl_editwin_get_text(e));
    119119    cb(e);
    120120  }
  • filter.c

    raf1920fd rad15610  
    341341  TEST_FILTER("type ^zephyr$ and direction ^in$ and ( class ^owl$ or instance ^owl$ )", 1);
    342342
    343   /* Order of operations and precedence */
     343  // Order of operations and precedence
    344344  TEST_FILTER("not true or false", 0);
    345345  TEST_FILTER("true or true and false", 0);
     
    352352  TEST_FILTER("filter f1", 1);
    353353
    354   /* Test recursion prevention */
     354  // Test recursion prevention
    355355  FAIL_UNLESS("self reference", owl_filter_init_fromstring(&f2, "test", "filter test"));
    356356
    357   /* mutual recursion */
     357  // mutual recursion
    358358  owl_filter_init_fromstring(&f3, "f3", "filter f4");
    359359  owl_global_add_filter(&g, &f3);
  • filterelement.c

    raf1920fd r5616acc  
    124124}
    125125
    126 /* Print methods */
     126// Print methods
    127127
    128128static void owl_filterelement_print_true(owl_filterelement *fe, char *buf)
     
    182182}
    183183
    184 /* Constructors */
     184// Constructors
    185185
    186186void owl_filterelement_create(owl_filterelement *fe) {
  • fmtext.c

    raf1920fd rc55ad84  
    793793void owl_fmtext_init_colorpair_mgr(owl_colorpair_mgr *cpmgr)
    794794{
    795   /* This could be a bitarray if we wanted to save memory. */
     795  // This could be a bitarray if we wanted to save memory.
    796796  short i, j;
    797797  cpmgr->next = 8;
    798798 
    799   /* The test is <= because we allocate COLORS+1 entries. */
     799  // The test is <= because we allocate COLORS+1 entries.
    800800  cpmgr->pairs = owl_malloc((COLORS+1) * sizeof(short*));
    801801  for(i = 0; i <= COLORS; i++) {
     
    823823    cpmgr->next = 8;
    824824   
    825     /* The test is <= because we allocated COLORS+1 entries. */
     825    // The test is <= because we allocated COLORS+1 entries.
    826826    for(i = 0; i <= COLORS; i++) {
    827827      for(j = 0; j <= COLORS; j++) {
     
    844844  short pair, default_bg;
    845845
    846   /* Sanity (Bounds) Check */
    847   if (fg > COLORS || fg < OWL_COLOR_DEFAULT) fg = OWL_COLOR_DEFAULT;
    848   if (bg > COLORS || bg < OWL_COLOR_DEFAULT) bg = OWL_COLOR_DEFAULT;
    849            
    850846#ifdef HAVE_USE_DEFAULT_COLORS
    851847  if (fg == OWL_COLOR_DEFAULT) fg = -1;
     
    857853#endif
    858854
    859   /* looking for a pair we already set up for this draw. */
     855  // looking for a pair we already set up for this draw.
    860856  cpmgr = owl_global_get_colorpair_mgr(&g);
    861857  pair = cpmgr->pairs[fg+1][bg+1];
    862858  if (!(pair != -1 && pair < cpmgr->next)) {
    863     /* If we didn't find a pair, search for a free one to assign. */
     859/*    owl_global_set_needrefresh(&g);*/
     860    // If we didn't find a pair, search for a free one to assign.
    864861    pair = (cpmgr->next < COLOR_PAIRS) ? cpmgr->next : -1;
    865862    if (pair != -1) {
    866       /* We found a free pair, initialize it. */
     863      // We found a free pair, initialize it.
    867864      init_pair(pair, fg, bg);
    868865      cpmgr->pairs[fg+1][bg+1] = pair;
     
    870867    }
    871868    else if (bg != OWL_COLOR_DEFAULT) {
    872       /* We still don't have a pair, drop the background color. Too bad. */
     869      // We still don't have a pair, drop the background color. Too bad.
    873870      owl_function_debugmsg("colorpairs: color shortage - dropping background color.");
    874871      pair = owl_fmtext_get_colorpair(fg, OWL_COLOR_DEFAULT);
    875872    }
    876873    else {
    877       /* We still don't have a pair, defaults all around. */
     874      // We still don't have a pair, defaults all around.
    878875      owl_function_debugmsg("colorpairs: color shortage - dropping foreground and background color.");
    879876      pair = 0;
  • functions.c

    raf1920fd rf9eea4c  
    13721372  redrawwin(owl_global_get_curs_recwin(&g));
    13731373  redrawwin(owl_global_get_curs_sepwin(&g));
    1374   /* Work around curses segfualts with windows off the screen */
     1374  // Work around curses segfualts with windows off the screen
    13751375  if (g.lines >= owl_global_get_typwin_lines(&g)+2)
    13761376      redrawwin(owl_global_get_curs_typwin(&g));
  • logging.c

    raf1920fd r28ee32b  
    139139  /* Figure out what path to log to */
    140140  if (owl_message_is_type_zephyr(m)) {
    141     /* If this has CC's, do all but the "recipient" which we'll do below */
     141    // If this has CC's, do all but the "recipient" which we'll do below
    142142    to = owl_message_get_cc_without_recipient(m);
    143143    if (to != NULL) {
     
    326326
    327327  if (personal && owl_message_is_type_zephyr(m)) {
    328     /* We want to log to all of the CC'd people who were not us, or
    329      * the sender, as well.
    330      */
     328    // We want to log to all of the CC'd people who were not us, or
     329    // the sender, as well.
    331330    char *cc, *temp;
    332331    cc = owl_message_get_cc_without_recipient(m);
  • obarray.c

    raf1920fd r535d68b  
    1010 */
    1111
    12 /* Helper method: Lookup a key in the obarray. If the key exists,
    13  * return its index, and the interned value in *val. Otherwise, return
    14  * the index it should be inserted at.
    15  */
     12// Helper method: Lookup a key in the obarray. If the key exists,
     13// return its index, and the interned value in *val. Otherwise, return
     14// the index it should be inserted at.
    1615int owl_obarray_lookup(owl_obarray *oa, char * key, char ** val) /*noproto*/
    1716{
     
    4039}
    4140
    42 /* Returns NULL if the string doesn't exist in the obarray */
     41// Returns NULL if the string doesn't exist in the obarray
    4342char * owl_obarray_find(owl_obarray *oa, char * string)
    4443{
     
    4847}
    4948
    50 /* Inserts the string into the obarray if it doesn't exist */
     49// Inserts the string into the obarray if it doesn't exist
    5150char * owl_obarray_insert(owl_obarray *oa, char * string)
    5251{
  • perl/modules/IRC/lib/BarnOwl/Module/IRC.pm

    rcab045b r5ff830a  
    162162       );
    163163
    164     if ($conn->conn->connected) {
     164    if ($conn->connected) {
    165165        BarnOwl::admin_message("IRC", "Connected to $alias as $nick");
    166166        $ircnets{$alias} = $conn;
  • perl/modules/Jabber/lib/BarnOwl/Module/Jabber.pm

    r879e7e94 r81312e4  
    137137}
    138138
    139 our $showOffline = 0;
    140 
    141139sub blist_listBuddy {
    142140    my $roster = shift;
     
    154152        $blistStr .= " [" . ( $rq{show} ? $rq{show} : 'online' ) . "]";
    155153        $blistStr .= " " . $rq{status} if $rq{status};
    156         $blistStr = BarnOwl::Style::boldify($blistStr) if $showOffline;
     154        $blistStr = BarnOwl::Style::boldify($blistStr);
    157155    }
    158156    else {
    159         return '' unless $showOffline;
     157        return '' if (BarnOwl::getvar('jabber:show_offline_buddies') eq 'off');
    160158        if ($jq{ask}) {
    161159            $blistStr .= " [pending]";
     
    200198
    201199sub onGetBuddyList {
    202     $showOffline = BarnOwl::getvar('jabber:show_offline_buddies') eq 'on';
    203200    my $blist = "";
    204201    foreach my $jid ($conn->getJIDs()) {
  • perlconfig.c

    raf1920fd r367fbf3  
    1414extern XS(boot_BarnOwl);
    1515extern XS(boot_DynaLoader);
    16 /* extern XS(boot_DBI); */
     16// extern XS(boot_DBI);
    1717
    1818static void owl_perl_xs_init(pTHX)
  • util.c

    raf1920fd r84027015  
    888888              !strcmp("meep foo bar", owl_util_uniq("meep foo", "bar foo meep", "-")));
    889889
    890   /* if (numfailed) printf("*** WARNING: failures encountered with owl_util\n"); */
     890  // if (numfailed) printf("*** WARNING: failures encountered with owl_util\n");
    891891  printf("# END testing owl_util (%d failures)\n", numfailed);
    892892  return(numfailed);
  • variable.c

    raf1920fd rd536e72  
    10831083  owl_variable_dict_free(&vd);
    10841084
    1085   /* if (numfailed) printf("*** WARNING: failures encountered with owl_variable\n"); */
     1085  // if (numfailed) printf("*** WARNING: failures encountered with owl_variable\n");
    10861086  printf("# END testing owl_variable (%d failures)\n", numfailed);
    10871087  return(numfailed);
Note: See TracChangeset for help on using the changeset viewer.