Differences From Artifact [70141d9d70]:
- File generic/tclProc.c — part of check-in [17354de1e8] at 2013-01-31 09:42:20 on branch core-8-5-branch — Use twoPtrValue.ptr1 in stead of otherValuePtr everywhere. This is exactly the same field, but it allows twoPtrValue.ptr2 to be used for other purposes. (user: jan.nijtmans size: 83392) [more...]
To Artifact [83f67767b5]:
- File generic/tclProc.c — part of check-in [f72b88420c] at 2019-09-06 17:23:58 on branch core-8-5-branch — fix bad level (if specified argument is not a level at all) (user: sebres size: 83405)
| ︙ | ︙ | |||
845 846 847 848 849 850 851 852 853 854 855 856 857 858 |
} else {
/*
* Don't cache as the object *isn't* a level reference.
*/
level = curLevel - 1;
result = 0;
}
/*
* Figure out which frame to use, and return it to the caller.
*/
for (framePtr = iPtr->varFramePtr; framePtr != NULL;
| > | 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 |
} else {
/*
* Don't cache as the object *isn't* a level reference.
*/
level = curLevel - 1;
result = 0;
name = "1";
}
/*
* Figure out which frame to use, and return it to the caller.
*/
for (framePtr = iPtr->varFramePtr; framePtr != NULL;
|
| ︙ | ︙ |