Overview
Comment: | Updated to not produce spurious newline |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 0aa038624e133468d2ebb8171b3ddf6e15b38fda |
User & Date: | rkeene on 2010-09-26 04:41:08 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:41 | Updated licensing information check-in: 37152044b7 user: rkeene tags: trunk | |
04:41 | Updated to not produce spurious newline check-in: 0aa038624e user: rkeene tags: trunk | |
04:41 | Began work on new pure-Tcl metakit, which will replace readkit-converted mk4tcl check-in: 7bfc5cf0e2 user: rkeene tags: trunk | |
Changes
Modified kitsh/buildsrc/kitsh-0.0/stringify.tcl from [100818685a] to [07e25e6903].
17 17 append ret " \"$line\\n\"\n" 18 18 } 19 19 20 20 return $ret 21 21 } 22 22 23 23 foreach file $argv { 24 - puts [stringifyfile $file] 24 + puts -nonewline [stringifyfile $file] 25 25 } 26 26 27 27 exit 0