summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authorandreas_kupries <akupries@shaw.ca>2006-09-22 22:32:07 (GMT)
committerandreas_kupries <akupries@shaw.ca>2006-09-22 22:32:07 (GMT)
commit62bcd073cca2f53f94bf0e4c74ca30200e5d34e4 (patch)
treef3f49293d053c1f5243f2c994a4df460537cc8e4 /generic/tclInt.h
parent4d806ec7125d35e4f837f3a2274aedc0f7593954 (diff)
downloadtcl-62bcd073cca2f53f94bf0e4c74ca30200e5d34e4.zip
tcl-62bcd073cca2f53f94bf0e4c74ca30200e5d34e4.tar.gz
tcl-62bcd073cca2f53f94bf0e4c74ca30200e5d34e4.tar.bz2
* generic/tclInt.h: Moved TIP#268's field 'packagePrefer' to the
end of the structure, for better backward compatibility.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h20
1 files changed, 9 insertions, 11 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 7b230dc..9a0edf7 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclInt.h,v 1.276 2006/09/22 18:13:28 andreas_kupries Exp $
+ * RCS: @(#) $Id: tclInt.h,v 1.277 2006/09/22 22:32:07 andreas_kupries Exp $
*/
#ifndef _TCLINT
@@ -1383,16 +1383,6 @@ typedef struct Interp {
* commands for packages that aren't described
* in packageTable. Ckalloc'ed, may be
* NULL. */
-
- /*
- * TIP #268.
- * The currently active selection mode,
- * i.e the package require preferences.
- */
-
- int packagePrefer; /* Current package selection mode.
- */
-
/*
* Miscellaneous information:
*/
@@ -1535,6 +1525,14 @@ typedef struct Interp {
* code returned by a channel operation. */
/*
+ * TIP #268.
+ * The currently active selection mode,
+ * i.e the package require preferences.
+ */
+
+ int packagePrefer; /* Current package selection mode.
+ */
+ /*
* Statistical information about the bytecode compiler and interpreter's
* operation.
*/