diff options
-rw-r--r-- | lang/gnustep-guile/files/patch-ScriptKit_Library_GuileInterpreter.m | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/lang/gnustep-guile/files/patch-ScriptKit_Library_GuileInterpreter.m b/lang/gnustep-guile/files/patch-ScriptKit_Library_GuileInterpreter.m new file mode 100644 index 00000000000..ec3dd799dea --- /dev/null +++ b/lang/gnustep-guile/files/patch-ScriptKit_Library_GuileInterpreter.m @@ -0,0 +1,26 @@ +--- ScriptKit/Library/GuileInterpreter.m.orig 2008-03-16 01:31:01.000000000 -0400 ++++ ScriptKit/Library/GuileInterpreter.m 2008-03-16 01:31:26.000000000 -0400 +@@ -349,9 +349,9 @@ add_let_script(NSMutableString * script, + NS_DURING + { + ret = gh_catch (SCM_BOOL_T, +- (scm_catch_body_t) eval_str_wrapper, ++ (scm_t_catch_body) eval_str_wrapper, + c_script, +- (scm_catch_handler_t) gopenstep_batch_handler, ++ (scm_t_catch_handler) gopenstep_batch_handler, + // Pass a script as nsstring to the handler + script); + } +@@ -365,9 +365,9 @@ add_let_script(NSMutableString * script, + { + // Only print message + ret = gh_catch (SCM_BOOL_T, +- (scm_catch_body_t) eval_str_wrapper, ++ (scm_t_catch_body) eval_str_wrapper, + c_script, +- (scm_catch_handler_t) gopenstep_interactive_handler, ++ (scm_t_catch_handler) gopenstep_interactive_handler, + // Pass a script as cstring to the handler + c_script); + } |