Changes in / [625802a:ee310eb]
- Files:
-
- 13 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
rb2c1bd4 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
rc55ad84 raf1920fd 793 793 void owl_fmtext_init_colorpair_mgr(owl_colorpair_mgr *cpmgr) 794 794 { 795 / / This could be a bitarray if we wanted to save memory.795 /* This could be a bitarray if we wanted to save memory. */ 796 796 short i, j; 797 797 cpmgr->next = 8; 798 798 799 / / The test is <= because we allocate COLORS+1 entries.799 /* The test is <= because we allocate COLORS+1 entries. */ 800 800 cpmgr->pairs = owl_malloc((COLORS+1) * sizeof(short*)); 801 801 for(i = 0; i <= COLORS; i++) { … … 823 823 cpmgr->next = 8; 824 824 825 / / The test is <= because we allocated COLORS+1 entries.825 /* The test is <= because we allocated COLORS+1 entries. */ 826 826 for(i = 0; i <= COLORS; i++) { 827 827 for(j = 0; j <= COLORS; j++) { … … 844 844 short pair, default_bg; 845 845 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 846 850 #ifdef HAVE_USE_DEFAULT_COLORS 847 851 if (fg == OWL_COLOR_DEFAULT) fg = -1; … … 853 857 #endif 854 858 855 / / looking for a pair we already set up for this draw.859 /* looking for a pair we already set up for this draw. */ 856 860 cpmgr = owl_global_get_colorpair_mgr(&g); 857 861 pair = cpmgr->pairs[fg+1][bg+1]; 858 862 if (!(pair != -1 && pair < cpmgr->next)) { 859 /* owl_global_set_needrefresh(&g);*/ 860 // If we didn't find a pair, search for a free one to assign. 863 /* If we didn't find a pair, search for a free one to assign. */ 861 864 pair = (cpmgr->next < COLOR_PAIRS) ? cpmgr->next : -1; 862 865 if (pair != -1) { 863 / / We found a free pair, initialize it.866 /* We found a free pair, initialize it. */ 864 867 init_pair(pair, fg, bg); 865 868 cpmgr->pairs[fg+1][bg+1] = pair; … … 867 870 } 868 871 else if (bg != OWL_COLOR_DEFAULT) { 869 / / We still don't have a pair, drop the background color. Too bad.872 /* We still don't have a pair, drop the background color. Too bad. */ 870 873 owl_function_debugmsg("colorpairs: color shortage - dropping background color."); 871 874 pair = owl_fmtext_get_colorpair(fg, OWL_COLOR_DEFAULT); 872 875 } 873 876 else { 874 / / We still don't have a pair, defaults all around.877 /* We still don't have a pair, defaults all around. */ 875 878 owl_function_debugmsg("colorpairs: color shortage - dropping foreground and background color."); 876 879 pair = 0; -
functions.c
rf9eea4c 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
r28ee32b 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) { … … 326 326 327 327 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. 328 /* We want to log to all of the CC'd people who were not us, or 329 * the sender, as well. 330 */ 330 331 char *cc, *temp; 331 332 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 { -
perl/modules/IRC/lib/BarnOwl/Module/IRC.pm
r5ff830a rcab045b 162 162 ); 163 163 164 if ($conn->conn ected) {164 if ($conn->conn->connected) { 165 165 BarnOwl::admin_message("IRC", "Connected to $alias as $nick"); 166 166 $ircnets{$alias} = $conn; -
perl/modules/Jabber/lib/BarnOwl/Module/Jabber.pm
r81312e4 r879e7e94 137 137 } 138 138 139 our $showOffline = 0; 140 139 141 sub blist_listBuddy { 140 142 my $roster = shift; … … 152 154 $blistStr .= " [" . ( $rq{show} ? $rq{show} : 'online' ) . "]"; 153 155 $blistStr .= " " . $rq{status} if $rq{status}; 154 $blistStr = BarnOwl::Style::boldify($blistStr) ;156 $blistStr = BarnOwl::Style::boldify($blistStr) if $showOffline; 155 157 } 156 158 else { 157 return '' if (BarnOwl::getvar('jabber:show_offline_buddies') eq 'off');159 return '' unless $showOffline; 158 160 if ($jq{ask}) { 159 161 $blistStr .= " [pending]"; … … 198 200 199 201 sub onGetBuddyList { 202 $showOffline = BarnOwl::getvar('jabber:show_offline_buddies') eq 'on'; 200 203 my $blist = ""; 201 204 foreach my $jid ($conn->getJIDs()) { -
perlconfig.c
r367fbf3 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
r84027015 raf1920fd 888 888 !strcmp("meep foo bar", owl_util_uniq("meep foo", "bar foo meep", "-"))); 889 889 890 / / if (numfailed) printf("*** WARNING: failures encountered with owl_util\n");890 /* if (numfailed) printf("*** WARNING: failures encountered with owl_util\n"); */ 891 891 printf("# END testing owl_util (%d failures)\n", numfailed); 892 892 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.