home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / p / plbin.zip / pl / boot / parms.pl < prev    next >
Text File  |  1992-12-16  |  511b  |  20 lines

  1. /*  parms.pl,v 1.2 1992/12/16 15:21:48 jan Exp
  2.  
  3.     Copyright (c) 1990 Jan Wielemaker. All rights reserved.
  4.     jan@swi.psy.uva.nl
  5.  
  6.     Purpose: Installation dependant parts of the prolog code
  7. */
  8.  
  9. :- user:assert(library_directory('.')).
  10. :- user:assert(library_directory(lib)).
  11. :- user:assert(library_directory('~/lib/prolog')).
  12. :- user:assert(library_directory('/usr/local/lib/pl/library')).
  13. :- user:assert((
  14.     library_directory(Lib) :-
  15.         '$home'(Home),
  16.         concat(Home, '/library', Lib))).
  17.  
  18.  
  19. $default_editor(vi).
  20.