diff options
author | hershey <hershey> | 1999-07-21 17:43:21 (GMT) |
---|---|---|
committer | hershey <hershey> | 1999-07-21 17:43:21 (GMT) |
commit | 8898e7a751fe8c39b5c30ee1202883b8e706f71e (patch) | |
tree | 8c9db164a480dde9322dbea626e8a921000d67be /generic | |
parent | a1210c7b206253069e1b5708e98a000ec60e1931 (diff) | |
download | tcl-8898e7a751fe8c39b5c30ee1202883b8e706f71e.zip tcl-8898e7a751fe8c39b5c30ee1202883b8e706f71e.tar.gz tcl-8898e7a751fe8c39b5c30ee1202883b8e706f71e.tar.bz2 |
added missing '\' at the end of one line (only irix complained about this)
Diffstat (limited to 'generic')
-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\ |