home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / devel / tcl / tclx7_31.z / tclx7_31 / tcldev / tclX7.3a-p1 / src / tclXdata.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-02  |  1.2 KB  |  30 lines

  1. /*
  2.  * tclXdata.c --
  3.  *
  4.  * This file supplies the tcl_RcFileName global variable.  Its stored in
  5.  * a seperate file so that both the TclX and TkX libraries can have a copy.
  6.  * Otherwise, TkX will bring in the UCB Tk main containing this variable rather
  7.  * than the TclX version.
  8.  *-----------------------------------------------------------------------------
  9.  * Copyright 1993 Karl Lehenbauer and Mark Diekhans.
  10.  *
  11.  * Permission to use, copy, modify, and distribute this software and its
  12.  * documentation for any purpose and without fee is hereby granted, provided
  13.  * that the above copyright notice appear in all copies.  Karl Lehenbauer and
  14.  * Mark Diekhans make no representations about the suitability of this
  15.  * software for any purpose.  It is provided "as is" without express or
  16.  * implied warranty.
  17.  *-----------------------------------------------------------------------------
  18.  * $Id: tclXdata.c,v 1.1 1993/12/02 03:28:13 markd Exp $
  19.  *-----------------------------------------------------------------------------
  20.  */
  21.  
  22. #include "tclExtdInt.h"
  23.  
  24. /*
  25.  * Name of a user-specific startup script to source if the application is
  26.  * being run interactively (e.g. "~/.tclrc").  Set by Tcl_AppInit.
  27.  *  NULL means don't source anything ever.
  28.  */
  29. char *tcl_RcFileName = NULL;
  30.