Check-in [0aa038624e]
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
18
19
20
21
22
23
24

25
26
27
17
18
19
20
21
22
23

24
25
26
27







-
+



		append ret "	\"$line\\n\"\n"
	}

	return $ret
}

foreach file $argv {
	puts [stringifyfile $file]
	puts -nonewline [stringifyfile $file]
}

exit 0