Changeset 0d3c100
- Timestamp:
- Jun 18, 2011, 5:12:29 PM (13 years ago)
- Parents:
- 5b197f7 (diff), e93dd78 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
perlconfig.c
r3b8a563 ra9237aa 492 492 PUTBACK; 493 493 494 call_pv("BarnOwl::Hooks::_new_command", G_ SCALAR|G_VOID|G_EVAL);494 call_pv("BarnOwl::Hooks::_new_command", G_VOID|G_EVAL); 495 495 496 496 SPAGAIN; -
select.c
r44976fe rf0781ba 353 353 if (loop) { 354 354 g_main_loop_quit(loop); 355 g_main_loop_unref(loop); 355 356 loop = NULL; 356 357 } -
tester.c
r4c7c21f re93dd78 32 32 char *perlerr; 33 33 int status = 0; 34 SCREEN *screen; 34 35 35 36 if (argc <= 1) { … … 41 42 wnull = fopen("/dev/null", "w"); 42 43 rnull = fopen("/dev/null", "r"); 43 newterm("xterm", wnull, rnull);44 screen = newterm("xterm", wnull, rnull); 44 45 /* initialize global structures */ 45 46 owl_global_init(&g); … … 91 92 /* probably not necessary, but tear down the screen */ 92 93 endwin(); 94 delscreen(screen); 93 95 fclose(rnull); 94 96 fclose(wnull); … … 218 220 owl_string_appendf_quoted(g, "%q foo %q%q %s %", "hello", "world is", "can't"); 219 221 FAIL_UNLESS("owl_string_appendf", 220 !strcmp(g _string_free(g, false),221 "hello foo 'world is'\"can't\" %s %"));222 !strcmp(g->str, "hello foo 'world is'\"can't\" %s %")); 223 g_string_free(g, true); 222 224 223 225 /* if (numfailed) printf("*** WARNING: failures encountered with owl_util\n"); */
Note: See TracChangeset
for help on using the changeset viewer.