summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>2000-02-08 10:06:11 (GMT)
committerhobbs <hobbs@noemail.net>2000-02-08 10:06:11 (GMT)
commit821719023a8659b6a387fa17aa8c5e329d9fe5cf (patch)
tree68762bb544e9d4f8a04e4b852847ddaa680f7b46
parent557fe4bf7aaac0fe770c802b1ee8d24f34bb1797 (diff)
downloadtcl-821719023a8659b6a387fa17aa8c5e329d9fe5cf.zip
tcl-821719023a8659b6a387fa17aa8c5e329d9fe5cf.tar.gz
tcl-821719023a8659b6a387fa17aa8c5e329d9fe5cf.tar.bz2
* doc/library.n:
* library/auto.tcl: fixed crufty puts code and docs [Bug: 4122] FossilOrigin-Name: 3a4ebbc0f44db99c6ee6ce3ddca15abfd81ac9b7
-rw-r--r--library/auto.tcl6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/auto.tcl b/library/auto.tcl
index 9575f7b..1281b76 100644
--- a/library/auto.tcl
+++ b/library/auto.tcl
@@ -3,7 +3,7 @@
# utility procs formerly in init.tcl dealing with auto execution
# of commands and can be auto loaded themselves.
#
-# RCS: @(#) $Id: auto.tcl,v 1.6 2000/02/01 01:14:01 ericm Exp $
+# RCS: @(#) $Id: auto.tcl,v 1.7 2000/02/08 10:06:12 hobbs Exp $
#
# Copyright (c) 1991-1993 The Regents of the University of California.
# Copyright (c) 1994-1998 Sun Microsystems, Inc.
@@ -182,7 +182,7 @@ proc auto_mkindex {dir args} {
auto_mkindex_parser::cleanup
set fid [open "tclIndex" w]
- puts $fid $index nonewline
+ puts -nonewline $fid $index
close $fid
cd $oldDir
}
@@ -229,7 +229,7 @@ proc auto_mkindex_old {dir args} {
set f ""
set error [catch {
set f [open tclIndex w]
- puts $f $index nonewline
+ puts -nonewline $f $index
close $f
cd $oldDir
} msg]