emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/geiser-guile f6911b5 218/284: New geiser-add-to-load-path,


From: Philip Kaludercic
Subject: [nongnu] elpa/geiser-guile f6911b5 218/284: New geiser-add-to-load-path, just for Guile right now
Date: Sun, 1 Aug 2021 18:29:48 -0400 (EDT)

branch: elpa/geiser-guile
commit f6911b58210bb1853abfd9eefe53ddb35bc84fed
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Commit: Jose Antonio Ortega Ruiz <jao@gnu.org>

    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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]