Changeset 06e04a9 for owl.c


Ignore:
Timestamp:
Feb 19, 2013, 8:28:55 PM (11 years ago)
Author:
David Benjamin <davidben@mit.edu>
Branches:
master, release-1.10
Children:
353719a
Parents:
6a20996
git-author:
Adam Glasgall <adam@crossproduct.net> (07/20/11 00:04:42)
git-committer:
David Benjamin <davidben@mit.edu> (02/19/13 20:28:55)
Message:
perlvariables - iteration N

Later commits reworked a lot of this, but the use of GValue over void*
was kept.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • owl.c

    r4d9e311c r06e04a9  
    478478  char **argv_copy;
    479479  char *perlout, *perlerr;
     480  const char *dlerr;
    480481  const owl_style *s;
    481482  const char *dir;
     
    554555  }
    555556
     557  dlerr = owl_closure_init();
     558  if(dlerr) {
     559    endwin();
     560    fprintf(stderr, "Error binding gtk2-perl functions from C: %s\n",dlerr);
     561    fflush(stderr);
     562    fprintf(stdout, "Error binding gtk2-perl functions from C: %s\n",dlerr);
     563    fflush(stdout);
     564    exit(1);
     565  }
     566 
    556567  owl_global_complete_setup(&g);
    557568
Note: See TracChangeset for help on using the changeset viewer.