summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2011-02-03 22:33:45 +0100
committerJose Antonio Ortega Ruiz <jao@gnu.org>2011-02-03 22:33:45 +0100
commitf6911b58210bb1853abfd9eefe53ddb35bc84fed (patch)
treeec76e0a45a12bcdddd5162f631fe488eacef6ff0
parenta000bd1e5c1defcc18b963ec42d4dc9668e003a0 (diff)
downloadgeiser-guile-f6911b58210bb1853abfd9eefe53ddb35bc84fed.tar.gz
geiser-guile-f6911b58210bb1853abfd9eefe53ddb35bc84fed.tar.bz2
New geiser-add-to-load-path, just for Guile right now
As per Andy's request. Adding it to Racket (and to the user manual), shouldn't be difficult).
-rw-r--r--geiser/evaluation.scm11
1 files changed, 9 insertions, 2 deletions
diff --git a/geiser/evaluation.scm b/geiser/evaluation.scm
index 3741c6a..b6575ba 100644
--- a/geiser/evaluation.scm
+++ b/geiser/evaluation.scm
@@ -1,6 +1,6 @@
;;; evaluation.scm -- evaluation, compilation and macro-expansion
-;; Copyright (C) 2009, 2010 Jose Antonio Ortega Ruiz
+;; Copyright (C) 2009, 2010, 2011 Jose Antonio Ortega Ruiz
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the Modified BSD License. You should
@@ -15,7 +15,8 @@
ge:macroexpand
ge:compile-file
ge:load-file
- ge:set-warnings)
+ ge:set-warnings
+ ge:add-to-load-path)
#:use-module (geiser modules)
#:use-module (srfi srfi-1)
#:use-module (language tree-il)
@@ -104,3 +105,9 @@
(with-output-to-string
(lambda ()
(pretty-print (tree-il->scheme (macroexpand form)))))))
+
+(define (ge:add-to-load-path dir)
+ (and (file-is-directory? dir)
+ (not (member dir %load-path))
+ (begin (set! %load-path (cons dir %load-path))
+ #t)))