home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / Tickle-4.0 (tcl) / tcl / extend / tclsrc / loadouster.tcl < prev    next >
Encoding:
Text File  |  1993-10-26  |  933 b   |  24 lines  |  [TEXT/MPS ]

  1. #
  2. # loadouster.tcl --
  3. #
  4. # Procedure to load a Ousterhout index when its encountered.
  5. #------------------------------------------------------------------------------
  6. # Copyright 1992-1993 Karl Lehenbauer and Mark Diekhans.
  7. #
  8. # Permission to use, copy, modify, and distribute this software and its
  9. # documentation for any purpose and without fee is hereby granted, provided
  10. # that the above copyright notice appear in all copies.  Karl Lehenbauer and
  11. # Mark Diekhans make no representations about the suitability of this
  12. # software for any purpose.  It is provided "as is" without express or
  13. # implied warranty.
  14. #------------------------------------------------------------------------------
  15. # $Id: loadouster.tcl,v 1.1 1993/06/21 05:58:43 markd Exp $
  16. #------------------------------------------------------------------------------
  17. #
  18.  
  19. proc auto_load_ouster_index f {
  20.     global auto_index
  21.     set dir [file dirname $f]
  22.     source $f
  23. }
  24.