diff options
Diffstat (limited to 'lang/itcl/files/patch-itcl_class.c')
-rw-r--r-- | lang/itcl/files/patch-itcl_class.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/itcl/files/patch-itcl_class.c b/lang/itcl/files/patch-itcl_class.c new file mode 100644 index 000000000000..0ccd8dabb726 --- /dev/null +++ b/lang/itcl/files/patch-itcl_class.c @@ -0,0 +1,11 @@ +--- generic/itcl_class.c.orig Thu Oct 23 17:58:16 2003 ++++ generic/itcl_class.c Thu Oct 23 17:59:01 2003 +@@ -960,7 +960,7 @@ + * it--as it is being resolved again by the compiler. + */ + cmdPtr = (Command*)mfunc->accessCmd; +- if (!cmdPtr || cmdPtr->deleted) { ++ if (!cmdPtr || (cmdPtr->flags & CMD_IS_DELETED)) { + mfunc->accessCmd = NULL; + + if ((flags & TCL_LEAVE_ERR_MSG) != 0) { |