Index: head/graphics/gle-graphics/files/patch-src_manip_all.h =================================================================== --- head/graphics/gle-graphics/files/patch-src_manip_all.h (nonexistent) +++ head/graphics/gle-graphics/files/patch-src_manip_all.h (revision 433507) @@ -0,0 +1,11 @@ +--- src/manip/all.h.orig 2010-12-26 17:07:31 UTC ++++ src/manip/all.h +@@ -143,7 +143,7 @@ typedef char (*(*TOKENS)[500]); + typedef unsigned char uchar; + typedef double dbl; + char *unquote(char *s); +-const char *gledir(const char *s); ++string gledir(const char *s); + int set_missing(int x, int y); + double vcell(int x, int y); + void var_find_rc(int *idx, int *var, int *nd, int c); Property changes on: head/graphics/gle-graphics/files/patch-src_manip_all.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/graphics/gle-graphics/files/patch-src_manip_filemenu.cpp =================================================================== --- head/graphics/gle-graphics/files/patch-src_manip_filemenu.cpp (nonexistent) +++ head/graphics/gle-graphics/files/patch-src_manip_filemenu.cpp (revision 433507) @@ -0,0 +1,17 @@ +--- src/manip/filemenu.cpp.orig 2010-06-14 15:34:39 UTC ++++ src/manip/filemenu.cpp +@@ -404,10 +404,12 @@ void do_help(const char *k1, const char + gotoxy(1,1); + wprintf("Manip help on topic {%s}, sub topic {%s}",k1,k2); + scr_menubg(); +- hfile = fopen(gledir(hfilename),"r"); ++ string fname = gledir(hfilename); ++ hfilename = fname.c_str(); ++ hfile = fopen(fname.c_str(),"r"); + if (hfile==NULL) { + gotoxy(1,3); +- wprintf("Unable to open {%s} \n",gledir(hfilename)); ++ wprintf("Unable to open {%s} \n",hfilename); + text_inkey(); + return; + } Property changes on: head/graphics/gle-graphics/files/patch-src_manip_filemenu.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property