Changeset af1920fd


Ignore:
Timestamp:
Feb 3, 2008, 1:01:07 AM (16 years ago)
Author:
Alejandro R. Sedeño <asedeno@mit.edu>
Branches:
master, barnowl_perlaim, debian, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
247cbc9, 61abb18
Parents:
1b737a1
Message:
Portability - removing C++ style comments.
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • dict.c

    r1cf3f8d3 raf1920fd  
    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

    rcc6f009 raf1920fd  
    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. */
    3840  /*
    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

    rad15610 raf1920fd  
    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

    r5616acc raf1920fd  
    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

    r1b737a1 raf1920fd  
    689689void owl_fmtext_init_colorpair_mgr(owl_colorpair_mgr *cpmgr)
    690690{
    691   // This could be a bitarray if we wanted to save memory.
     691  /* This could be a bitarray if we wanted to save memory. */
    692692  short i, j;
    693693  cpmgr->next = 8;
    694694 
    695   // The test is <= because we allocate COLORS+1 entries.
     695  /* The test is <= because we allocate COLORS+1 entries. */
    696696  cpmgr->pairs = owl_malloc((COLORS+1) * sizeof(short*));
    697697  for(i = 0; i <= COLORS; i++) {
     
    719719    cpmgr->next = 8;
    720720   
    721     // The test is <= because we allocated COLORS+1 entries.
     721    /* The test is <= because we allocated COLORS+1 entries. */
    722722    for(i = 0; i <= COLORS; i++) {
    723723      for(j = 0; j <= COLORS; j++) {
     
    753753#endif
    754754
    755   // looking for a pair we already set up for this draw.
     755  /* looking for a pair we already set up for this draw. */
    756756  cpmgr = owl_global_get_colorpair_mgr(&g);
    757757  pair = cpmgr->pairs[fg+1][bg+1];
    758758  if (!(pair != -1 && pair < cpmgr->next)) {
    759 /*    owl_global_set_needrefresh(&g);*/
    760     // If we didn't find a pair, search for a free one to assign.
     759    /* If we didn't find a pair, search for a free one to assign. */
    761760    pair = (cpmgr->next < COLOR_PAIRS) ? cpmgr->next : -1;
    762761    if (pair != -1) {
    763       // We found a free pair, initialize it.
     762      /* We found a free pair, initialize it. */
    764763      init_pair(pair, fg, bg);
    765764      cpmgr->pairs[fg+1][bg+1] = pair;
     
    767766    }
    768767    else if (bg != OWL_COLOR_DEFAULT) {
    769       // We still don't have a pair, drop the background color. Too bad.
     768      /* We still don't have a pair, drop the background color. Too bad. */
    770769      owl_function_debugmsg("colorpairs: color shortage - dropping background color.");
    771770      pair = owl_fmtext_get_colorpair(fg, OWL_COLOR_DEFAULT);
    772771    }
    773772    else {
    774       // We still don't have a pair, defaults all around.
     773      /* We still don't have a pair, defaults all around. */
    775774      owl_function_debugmsg("colorpairs: color shortage - dropping foreground and background color.");
    776775      pair = 0;
  • functions.c

    r3617286 raf1920fd  
    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

    rd0961fe raf1920fd  
    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) {
     
    317317
    318318  if (personal && owl_message_is_type_zephyr(m)) {
    319     // We want to log to all of the CC'd people who were not us, or
    320     // the sender, as well.
     319    /* We want to log to all of the CC'd people who were not us, or
     320     * the sender, as well.
     321     */
    321322    char *cc, *temp;
    322323    cc = owl_message_get_cc_without_recipient(m);
  • obarray.c

    r535d68b raf1920fd  
    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.
     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 */
    1516int owl_obarray_lookup(owl_obarray *oa, char * key, char ** val) /*noproto*/
    1617{
     
    3940}
    4041
    41 // Returns NULL if the string doesn't exist in the obarray
     42/* Returns NULL if the string doesn't exist in the obarray */
    4243char * owl_obarray_find(owl_obarray *oa, char * string)
    4344{
     
    4748}
    4849
    49 // Inserts the string into the obarray if it doesn't exist
     50/* Inserts the string into the obarray if it doesn't exist */
    5051char * owl_obarray_insert(owl_obarray *oa, char * string)
    5152{
  • perlconfig.c

    rff13a6f raf1920fd  
    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

    r89f5338 raf1920fd  
    818818              !strcmp("meep foo bar", owl_util_uniq("meep foo", "bar foo meep", "-")));
    819819
    820   // if (numfailed) printf("*** WARNING: failures encountered with owl_util\n");
     820  /* if (numfailed) printf("*** WARNING: failures encountered with owl_util\n"); */
    821821  printf("# END testing owl_util (%d failures)\n", numfailed);
    822822  return(numfailed);
  • variable.c

    rd536e72 raf1920fd  
    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.