File: EUSRC

package info (click to toggle)
euslisp 9.32%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 55,268 kB
  • sloc: ansic: 41,693; lisp: 3,339; makefile: 286; sh: 238; asm: 138; python: 53
file content (20 lines) | stat: -rw-r--r-- 646 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
;; Sample of an .eusrc file.
;; Copy this file to your home directory and customize as you like.

;; When EusLisp starts, it first tries to locate the eusrc file
;; named by 'EUSRC' environment variable.  If it is found, the  file
;; is loaded.  Otherwise, '.eusrc' file in the user's home directory
;; is loaded.
;; Also, if there is a .eusrc file in the current working directory,
;; it is loaded.  Note that if eus starts in the user's home directory,
;; .eusrc file is loaded twice. 


(setq *load-path*
	(list	"./"
		*eusdir*
		(format nil "~Allib/" *eusdir*)
		(format nil "~Ademo/" *eusdir*)))

(defparameter *user* (unix:getenv "USER"))