summaryrefslogtreecommitdiff
blob: ad42e8b301f8c9d44241486366d023df9c86b472 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
diff -urN itcl3.2.old/itcl/generic/itcl_class.c itcl3.2/itcl/generic/itcl_class.c
--- itcl3.2.old/itcl/generic/itcl_class.c	Mon Aug 28 20:58:00 2000
+++ itcl3.2/itcl/generic/itcl_class.c	Mon May 27 06:17:26 2002
@@ -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) {
diff -urN itcl3.2.old/itcl/generic/itcl_ensemble.c itcl3.2/itcl/generic/itcl_ensemble.c
--- itcl3.2.old/itcl/generic/itcl_ensemble.c	Mon Aug 28 20:58:00 2000
+++ itcl3.2/itcl/generic/itcl_ensemble.c	Mon May 27 06:17:26 2002
@@ -819,7 +819,7 @@
     cmdPtr->clientData = NULL;
     cmdPtr->deleteProc = DeleteEnsemble;
     cmdPtr->deleteData = cmdPtr->objClientData;
-    cmdPtr->deleted = 0;
+    cmdPtr->flags &= ~CMD_IS_DELETED;
     cmdPtr->importRefPtr = NULL;
 
     ensPart->cmdPtr = cmdPtr;
@@ -896,7 +896,7 @@
     cmdPtr->clientData = NULL;
     cmdPtr->deleteProc = deleteProc;
     cmdPtr->deleteData = (ClientData)clientData;
-    cmdPtr->deleted = 0;
+    cmdPtr->flags &= ~CMD_IS_DELETED;
     cmdPtr->importRefPtr = NULL;
 
     ensPart->cmdPtr = cmdPtr;
diff -urN itcl3.2.old/iwidgets2.2.0/Makefile.in itcl3.2/iwidgets2.2.0/Makefile.in
--- itcl3.2.old/iwidgets2.2.0/Makefile.in	Mon Aug 28 20:58:00 2000
+++ itcl3.2/iwidgets2.2.0/Makefile.in	Mon May 27 06:20:06 2002
@@ -31,6 +31,7 @@
 
 srcdir = @srcdir@
 bindir = @bindir@
+mandir = @mandir@
 
 # The following definition can be set to non-null for special systems
 # like AFS with replication.  It allows the pathnames used for installation
@@ -52,7 +53,7 @@
 INCLUDE_INSTALL_DIR = $(INSTALL_ROOT)$(prefix)/include
 
 # Top-level directory in which to install manual entries:
-MAN_INSTALL_DIR = $(INSTALL_ROOT)$(prefix)/man
+MAN_INSTALL_DIR = $(INSTALL_ROOT)$(mandir)
 
 # Directory in which to install manual entry for itclsh:
 MAN1_INSTALL_DIR = $(MAN_INSTALL_DIR)/man1
diff -urN itcl3.2.old/iwidgets3.0.0/Makefile.in itcl3.2/iwidgets3.0.0/Makefile.in
--- itcl3.2.old/iwidgets3.0.0/Makefile.in	Mon Aug 28 20:58:00 2000
+++ itcl3.2/iwidgets3.0.0/Makefile.in	Mon May 27 06:20:30 2002
@@ -31,6 +31,7 @@
 
 srcdir = @srcdir@
 bindir = @bindir@
+mandir = @mandir@
 
 # The following definition can be set to non-null for special systems
 # like AFS with replication.  It allows the pathnames used for installation
@@ -52,7 +53,7 @@
 INCLUDE_INSTALL_DIR = $(INSTALL_ROOT)$(prefix)/include
 
 # Top-level directory in which to install manual entries:
-MAN_INSTALL_DIR = $(INSTALL_ROOT)$(prefix)/man
+MAN_INSTALL_DIR = $(INSTALL_ROOT)$(mandir)
 
 # Directory in which to install manual entry for itclsh:
 MAN1_INSTALL_DIR = $(MAN_INSTALL_DIR)/man1