From f6911b58210bb1853abfd9eefe53ddb35bc84fed Mon Sep 17 00:00:00 2001 From: Jose Antonio Ortega Ruiz Date: Thu, 3 Feb 2011 22:33:45 +0100 Subject: 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). --- geiser/evaluation.scm | 11 +++++++++-- 1 file 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))) -- cgit v1.2.3