Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fixed prompt |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 361ee857e8fb0b2c4e33a085cca41f418a972d3d |
User & Date: | dennis2 2002-11-14 20:10:27 |
Context
2002-12-17
| ||
09:31 | Add reuse of first opened editor check-in: 35fd5133a1 user: dennis2 tags: trunk | |
2002-11-14
| ||
20:10 | Fixed prompt check-in: 361ee857e8 user: dennis2 tags: trunk | |
20:08 | Changed textsh default font to Courier check-in: 46249b3e76 user: dennis2 tags: trunk | |
Changes
Changes to CHANGES.
1 2 3 4 5 6 7 8 9 |
Version 0.9.11 released <tbd> * Delimiters in speedbuttonbar Version 0.9.10 released 01-03-03 * Moved helpfiles to separate directory * Removed (Bad KDE support) * Add "Insert Special char" dialog |
> > |
1 2 3 4 5 6 7 8 9 10 11 |
Version 0.9.11 released <tbd> * Changed default font in textsh to Courier * Fixed prompt in textsh * Delimiters in speedbuttonbar Version 0.9.10 released 01-03-03 * Moved helpfiles to separate directory * Removed (Bad KDE support) * Add "Insert Special char" dialog |
Changes to lib/textsh.tcl.
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
variable w set cmds "" if {!$piperun} { set piperun 1 set pipe [open "|sh -c {exec sh 2>&1 }" "RDWR"] #set pipe [open "|sh 2>&1" "RDWR"] fconfigure $pipe -blocking 0 textsh::readch runcmd "" } } |
| |
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
variable w
set cmds ""
if {!$piperun} {
set piperun 1
set pipe [open "|sh -c {exec sh -i 2>&1 }" "RDWR"]
#set pipe [open "|sh 2>&1" "RDWR"]
fconfigure $pipe -blocking 0
textsh::readch
runcmd ""
}
}
|