Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | set varacces to disabled as default |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
3fde67ba9ac818f972245ed2812e5c49 |
| User & Date: | grable 2018-11-02 16:36:06.011 |
Context
|
2018-11-02
| ||
| 18:50 | simplified makefile and removed an old assert check-in: 77f0f6ca06 user: grable tags: trunk | |
| 16:36 | set varacces to disabled as default check-in: 3fde67ba9a user: grable tags: trunk | |
| 16:27 | added optional support for jimtcl varaccess, for better variables. though it requires a customized jimtcl check-in: 381dd22404 user: grable tags: trunk | |
Changes
Changes to jimff.c.
| ︙ | ︙ | |||
26 27 28 29 30 31 32 | /**************************************************************************************************** * jimff config */ // define this to disable the context info command //#define JIMFF_DISABLE_INFO_COMMAND | | | | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | /**************************************************************************************************** * jimff config */ // define this to disable the context info command //#define JIMFF_DISABLE_INFO_COMMAND // define this to enable custom variable access, requires a customized jimtcl //#define JIMFF_ENABLE_JIM_VARACCESS /**************************************************************************************************** * jimff misc */ #include "strrpbrk.c" |
| ︙ | ︙ |
Changes to tests/jimff_test_all.tcl.
| ︙ | ︙ | |||
145 146 147 148 149 150 151 152 |
ff::free
jimff ff
ff::load test_lib.dll
ff::import test_callback vzx
puts "** next line should fail!"
#set test_1 [ff::callback test_1 iizf] ;# <-- skipping this step to use the last one defined, next line should should fail
test_callback "message" $test_1
puts {}
| > | 145 146 147 148 149 150 151 152 153 |
ff::free
jimff ff
ff::load test_lib.dll
ff::import test_callback vzx
puts "** next line should fail!"
#set test_1 [ff::callback test_1 iizf] ;# <-- skipping this step to use the last one defined, next line should should fail
test_callback "message" $test_1
puts "** should not reach this point!"
puts {}
|