summaryrefslogtreecommitdiffstats
path: root/generic/tkInitScript.h
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2005-11-15 15:18:21 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2005-11-15 15:18:21 (GMT)
commit880c27d88e6fe14e3834ff5403249e1fe7b1bf74 (patch)
tree7807395c24a76cc57ed6ff2e3510a03e04efbc37 /generic/tkInitScript.h
parent510452cedeeebfa59bfb1f13e86e74a6bc287320 (diff)
downloadtk-880c27d88e6fe14e3834ff5403249e1fe7b1bf74.zip
tk-880c27d88e6fe14e3834ff5403249e1fe7b1bf74.tar.gz
tk-880c27d88e6fe14e3834ff5403249e1fe7b1bf74.tar.bz2
ANSIfy
Diffstat (limited to 'generic/tkInitScript.h')
-rw-r--r--generic/tkInitScript.h31
1 files changed, 14 insertions, 17 deletions
diff --git a/generic/tkInitScript.h b/generic/tkInitScript.h
index 02da882..ee86e1b 100644
--- a/generic/tkInitScript.h
+++ b/generic/tkInitScript.h
@@ -1,24 +1,22 @@
-/*
+/*
* tkInitScript.h --
*
* This file contains Unix & Windows common init script
*
* Copyright (c) 1997 Sun Microsystems, Inc.
*
- * See the file "license.terms" for information on usage and redistribution
- * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
+ * See the file "license.terms" for information on usage and redistribution of
+ * this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkInitScript.h,v 1.9 2004/03/17 18:15:43 das Exp $
+ * RCS: @(#) $Id: tkInitScript.h,v 1.10 2005/11/15 15:18:21 dkf Exp $
*/
-
-
/*
- * In order to find tk.tcl during initialization, the following script
- * is invoked by Tk_Init(). It looks in several different directories:
+ * In order to find tk.tcl during initialization, the following script is
+ * invoked by Tk_Init(). It looks in several different directories:
*
- * $tk_library - can specify a primary location, if set
- * no other locations will be checked
+ * $tk_library - can specify a primary location, if set no
+ * other locations will be checked
*
* $env(TK_LIBRARY) - highest priority so user can always override
* the search path unless the application has
@@ -29,18 +27,18 @@
* lib directory (e.g. /usr/local)
*
* <executable directory>/../lib/tk$tk_version
- * - look for a lib/tk<ver> in a sibling of
- * the bin directory (e.g. /usr/local)
+ * - look for a lib/tk<ver> in a sibling of the
+ * bin directory (e.g. /usr/local)
*
* <executable directory>/../library
* - look in Tk build directory
*
* <executable directory>/../../tk$tk_patchLevel/library
- * - look for Tk build directory relative
- * to a parallel build directory
+ * - look for Tk build directory relative to a
+ * parallel build directory
*
- * The first directory on this path that contains a valid tk.tcl script
- * will be set ast the value of tk_library.
+ * The first directory on this path that contains a valid tk.tcl script will
+ * be set ast the value of tk_library.
*
* Note that this entire search mechanism can be bypassed by defining an
* alternate tkInit procedure before calling Tk_Init().
@@ -54,4 +52,3 @@ static char initScript[] = "if {[info proc tkInit]==\"\"} {\n\
}\n\
}\n\
tkInit";
-