diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2003-12-05 11:13:24 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2003-12-05 11:13:24 +0000 |
commit | c6a81e689f9ba8917186a2fdbbd0e2205ab13dff (patch) | |
tree | 0602dcb2c26e3fd8129621420f27a6189559acf9 /lang/itcl/files/patch-itcl_class.c | |
parent | - Update to 1.2.4b (diff) |
- Update to work with tcl8.4
- Quiet portlint a bit
PR: ports/58466
Submitted by: Michael Edenfield <kutulu@kutulu.org>
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) { |