summaryrefslogtreecommitdiffstats
path: root/otherlibs/labltk/support/cltkVar.c
diff options
context:
space:
mode:
authorJun FURUSE / 古瀬 淳 <jun.furuse@gmail.com>2010-04-03 06:43:51 +0000
committerJun FURUSE / 古瀬 淳 <jun.furuse@gmail.com>2010-04-03 06:43:51 +0000
commitf5fc4d52079c0eb2a91e2cbc3c7c23f6554e43cb (patch)
treefeeec35aaf445ec41d4b1cb9e529a3193b2ad217 /otherlibs/labltk/support/cltkVar.c
parentab550592efa74f1f67a705f84251cce7e32a64c6 (diff)
fix for tk86 and removal of tkanim
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@10230 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/labltk/support/cltkVar.c')
-rw-r--r--otherlibs/labltk/support/cltkVar.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/otherlibs/labltk/support/cltkVar.c b/otherlibs/labltk/support/cltkVar.c
index 674b8e9db..0411a94cd 100644
--- a/otherlibs/labltk/support/cltkVar.c
+++ b/otherlibs/labltk/support/cltkVar.c
@@ -38,8 +38,8 @@ CAMLprim value camltk_getvar(value var)
stat_free(stable_var);
if (s == NULL)
- tk_error(cltclinterp->result);
- else
+ tk_error(Tcl_GetStringResult(cltclinterp));
+ else
return(tcl_string_to_caml(s));
}
@@ -64,8 +64,8 @@ CAMLprim value camltk_setvar(value var, value contents)
stat_free(utf_contents);
if (s == NULL)
- tk_error(cltclinterp->result);
- else
+ tk_error(Tcl_GetStringResult(cltclinterp));
+ else
return(Val_unit);
}
@@ -104,7 +104,7 @@ CAMLprim value camltk_trace_var(value var, value cbid)
(ClientData) (Long_val(cbid)))
!= TCL_OK) {
stat_free(cvar);
- tk_error(cltclinterp->result);
+ tk_error(Tcl_GetStringResult(cltclinterp));
};
stat_free(cvar);
return Val_unit;