Changeset af1920fd
- Timestamp:
- Feb 3, 2008, 1:01:07 AM (17 years ago)
- 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
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
dict.c
r1cf3f8d3 raf1920fd 179 179 owl_dict_free_all(&d, NULL); 180 180 181 / / if (numfailed) printf("*** WARNING: failures encountered with owl_dict\n");181 /* if (numfailed) printf("*** WARNING: failures encountered with owl_dict\n"); */ 182 182 printf("# END testing owl_dict (%d failures)\n", numfailed); 183 183 return(numfailed); -
editwin.c
rcc6f009 raf1920fd 36 36 e->echochar='\0'; 37 37 38 /* We get initialized multiple times, but we need to hold on to 39 the callbacks, so we can't NULL them here. */ 38 40 /* 39 // We get initialized multiple times, but we need to hold on to40 // the callbacks, so we can't NULL them here.41 41 e->command = NULL; 42 42 e->callback = NULL; … … 116 116 owl_function_error("Internal error: No editwin callback!"); 117 117 } else { 118 / / owl_function_error("text: |%s|", owl_editwin_get_text(e));118 /* owl_function_error("text: |%s|", owl_editwin_get_text(e)); */ 119 119 cb(e); 120 120 } -
filter.c
rad15610 raf1920fd 341 341 TEST_FILTER("type ^zephyr$ and direction ^in$ and ( class ^owl$ or instance ^owl$ )", 1); 342 342 343 / / Order of operations and precedence343 /* Order of operations and precedence */ 344 344 TEST_FILTER("not true or false", 0); 345 345 TEST_FILTER("true or true and false", 0); … … 352 352 TEST_FILTER("filter f1", 1); 353 353 354 / / Test recursion prevention354 /* Test recursion prevention */ 355 355 FAIL_UNLESS("self reference", owl_filter_init_fromstring(&f2, "test", "filter test")); 356 356 357 / / mutual recursion357 /* mutual recursion */ 358 358 owl_filter_init_fromstring(&f3, "f3", "filter f4"); 359 359 owl_global_add_filter(&g, &f3); -
filterelement.c
r5616acc raf1920fd 124 124 } 125 125 126 / / Print methods126 /* Print methods */ 127 127 128 128 static void owl_filterelement_print_true(owl_filterelement *fe, char *buf) … … 182 182 } 183 183 184 / / Constructors184 /* Constructors */ 185 185 186 186 void owl_filterelement_create(owl_filterelement *fe) { -
fmtext.c
r1b737a1 raf1920fd 689 689 void owl_fmtext_init_colorpair_mgr(owl_colorpair_mgr *cpmgr) 690 690 { 691 / / This could be a bitarray if we wanted to save memory.691 /* This could be a bitarray if we wanted to save memory. */ 692 692 short i, j; 693 693 cpmgr->next = 8; 694 694 695 / / The test is <= because we allocate COLORS+1 entries.695 /* The test is <= because we allocate COLORS+1 entries. */ 696 696 cpmgr->pairs = owl_malloc((COLORS+1) * sizeof(short*)); 697 697 for(i = 0; i <= COLORS; i++) { … … 719 719 cpmgr->next = 8; 720 720 721 / / The test is <= because we allocated COLORS+1 entries.721 /* The test is <= because we allocated COLORS+1 entries. */ 722 722 for(i = 0; i <= COLORS; i++) { 723 723 for(j = 0; j <= COLORS; j++) { … … 753 753 #endif 754 754 755 / / looking for a pair we already set up for this draw.755 /* looking for a pair we already set up for this draw. */ 756 756 cpmgr = owl_global_get_colorpair_mgr(&g); 757 757 pair = cpmgr->pairs[fg+1][bg+1]; 758 758 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. */ 761 760 pair = (cpmgr->next < COLOR_PAIRS) ? cpmgr->next : -1; 762 761 if (pair != -1) { 763 / / We found a free pair, initialize it.762 /* We found a free pair, initialize it. */ 764 763 init_pair(pair, fg, bg); 765 764 cpmgr->pairs[fg+1][bg+1] = pair; … … 767 766 } 768 767 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. */ 770 769 owl_function_debugmsg("colorpairs: color shortage - dropping background color."); 771 770 pair = owl_fmtext_get_colorpair(fg, OWL_COLOR_DEFAULT); 772 771 } 773 772 else { 774 / / We still don't have a pair, defaults all around.773 /* We still don't have a pair, defaults all around. */ 775 774 owl_function_debugmsg("colorpairs: color shortage - dropping foreground and background color."); 776 775 pair = 0; -
functions.c
r3617286 raf1920fd 1372 1372 redrawwin(owl_global_get_curs_recwin(&g)); 1373 1373 redrawwin(owl_global_get_curs_sepwin(&g)); 1374 / / Work around curses segfualts with windows off the screen1374 /* Work around curses segfualts with windows off the screen */ 1375 1375 if (g.lines >= owl_global_get_typwin_lines(&g)+2) 1376 1376 redrawwin(owl_global_get_curs_typwin(&g)); -
logging.c
rd0961fe raf1920fd 139 139 /* Figure out what path to log to */ 140 140 if (owl_message_is_type_zephyr(m)) { 141 / / If this has CC's, do all but the "recipient" which we'll do below141 /* If this has CC's, do all but the "recipient" which we'll do below */ 142 142 to = owl_message_get_cc_without_recipient(m); 143 143 if (to != NULL) { … … 317 317 318 318 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 */ 321 322 char *cc, *temp; 322 323 cc = owl_message_get_cc_without_recipient(m); -
obarray.c
r535d68b raf1920fd 10 10 */ 11 11 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 */ 15 16 int owl_obarray_lookup(owl_obarray *oa, char * key, char ** val) /*noproto*/ 16 17 { … … 39 40 } 40 41 41 / / Returns NULL if the string doesn't exist in the obarray42 /* Returns NULL if the string doesn't exist in the obarray */ 42 43 char * owl_obarray_find(owl_obarray *oa, char * string) 43 44 { … … 47 48 } 48 49 49 / / Inserts the string into the obarray if it doesn't exist50 /* Inserts the string into the obarray if it doesn't exist */ 50 51 char * owl_obarray_insert(owl_obarray *oa, char * string) 51 52 { -
perlconfig.c
rff13a6f raf1920fd 14 14 extern XS(boot_BarnOwl); 15 15 extern XS(boot_DynaLoader); 16 / / extern XS(boot_DBI);16 /* extern XS(boot_DBI); */ 17 17 18 18 static void owl_perl_xs_init(pTHX) -
util.c
r89f5338 raf1920fd 818 818 !strcmp("meep foo bar", owl_util_uniq("meep foo", "bar foo meep", "-"))); 819 819 820 / / if (numfailed) printf("*** WARNING: failures encountered with owl_util\n");820 /* if (numfailed) printf("*** WARNING: failures encountered with owl_util\n"); */ 821 821 printf("# END testing owl_util (%d failures)\n", numfailed); 822 822 return(numfailed); -
variable.c
rd536e72 raf1920fd 1083 1083 owl_variable_dict_free(&vd); 1084 1084 1085 / / if (numfailed) printf("*** WARNING: failures encountered with owl_variable\n");1085 /* if (numfailed) printf("*** WARNING: failures encountered with owl_variable\n"); */ 1086 1086 printf("# END testing owl_variable (%d failures)\n", numfailed); 1087 1087 return(numfailed);
Note: See TracChangeset
for help on using the changeset viewer.