Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Report the error information we collected. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
bc4dddabd787c9afaf5def8179f145e1 |
User & Date: | dgp 2018-06-14 15:27:44.388 |
Context
2018-06-15
| ||
10:42 | Bring in some of the recent TEA changes. check-in: 318193ca5b user: stu tags: trunk | |
2018-06-14
| ||
15:27 | Report the error information we collected. check-in: bc4dddabd7 user: dgp tags: trunk | |
12:41 | Remove [source -rsrc] check-in: 97d99ccccd user: dgp tags: trunk | |
Changes
Changes to generic/itclParse.c.
︙ | ︙ | |||
83 84 85 86 87 88 89 | " lappend dirs [file join $d itcl$patchLevel]\n" " }\n" " }\n" " }\n" " foreach i $dirs {\n" " set library $i\n" " set itclfile [file join $i itclWidget.tcl]\n" | | > > | 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | " lappend dirs [file join $d itcl$patchLevel]\n" " }\n" " }\n" " }\n" " foreach i $dirs {\n" " set library $i\n" " set itclfile [file join $i itclWidget.tcl]\n" " if {![catch {uplevel #0 [list source $itclfile]} emsg]} {\n" " return\n" " }\n" " }\n" " set msg \"Can't find a usable itclWidget.tcl in the following directories:\n\"\n" " append msg \" $dirs\n\"\n" " append msg \"Last error:\n\"\n" " append msg \" $emsg\n\"\n" " append msg \"This probably means that Itcl/Tcl weren't installed properly.\n\"\n" " append msg \"If you know where the Itcl library directory was installed,\n\"\n" " append msg \"you can set the environment variable ITCL_LIBRARY to point\n\"\n" " append msg \"to the library directory.\n\"\n" " error $msg\n" " }\n" " _find_widget_init\n" |
︙ | ︙ |