diff options
author | hershey <hershey@noemail.net> | 1999-07-21 17:43:20 (GMT) |
---|---|---|
committer | hershey <hershey@noemail.net> | 1999-07-21 17:43:20 (GMT) |
commit | a734add239617258318909607e95314bc792d079 (patch) | |
tree | 8c9db164a480dde9322dbea626e8a921000d67be | |
parent | 773f50b2f34e20e541ecca7649e8cce7a5829dd6 (diff) | |
download | tcl-a734add239617258318909607e95314bc792d079.zip tcl-a734add239617258318909607e95314bc792d079.tar.gz tcl-a734add239617258318909607e95314bc792d079.tar.bz2 |
added missing '\' at the end of one line (only irix complained about this)
FossilOrigin-Name: 323fd26f82774249586ae086a4b1b49992d184e5
-rw-r--r-- | generic/tclInitScript.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclInitScript.h b/generic/tclInitScript.h index c74868b..751fba1 100644 --- a/generic/tclInitScript.h +++ b/generic/tclInitScript.h @@ -8,7 +8,7 @@ * Copyright (c) 1999 by Scriptics Corporation. * All rights reserved. * - * RCS: @(#) $Id: tclInitScript.h,v 1.10 1999/07/21 02:01:36 hershey Exp $ + * RCS: @(#) $Id: tclInitScript.h,v 1.11 1999/07/21 17:43:21 hershey Exp $ */ /* @@ -51,7 +51,7 @@ static char initScript[] = "if {[info proc tclInit]==\"\"} {\n\ }\n\ lappend dirs $tclDefaultLibrary\n\ unset tclDefaultLibrary\n\ - set dirs [concat $dirs $tcl_libPath] + set dirs [concat $dirs $tcl_libPath]\n\ }\n\ foreach i $dirs {\n\ set tcl_library $i\n\ |