summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2011-03-08 20:51:28 +0100
committerJose Antonio Ortega Ruiz <jao@gnu.org>2011-03-08 20:51:28 +0100
commita6dccbebde0fbc28f7fc0c2712467978dbc07857 (patch)
tree699a59b453d067fc64330ad5b36a172bee5ae875
parentf0174547304250c5201e95a17eb91fd79506cb8d (diff)
downloadgeiser-guile-a6dccbebde0fbc28f7fc0c2712467978dbc07857.tar.gz
geiser-guile-a6dccbebde0fbc28f7fc0c2712467978dbc07857.tar.bz2
Guile: new option for loading ~/.guile (see issue #32681)
The new custom variable, geiser-guile-load-init-file-p, will be gone once Guile adquires the ability to specify the path to its init file.
-rw-r--r--elisp/geiser-guile.el20
1 files changed, 16 insertions, 4 deletions
diff --git a/elisp/geiser-guile.el b/elisp/geiser-guile.el
index 4d7727c..169ac30 100644
--- a/elisp/geiser-guile.el
+++ b/elisp/geiser-guile.el
@@ -45,10 +45,20 @@ started."
:group 'geiser-guile)
(geiser-custom--defcustom geiser-guile-init-file "~/.guile-geiser"
- "Initialization file with user code for the Guile REPL."
+ "Initialization file with user code for the Guile REPL.
+If all you want is to load ~/.guile, set
+`geiser-guile-load-init-file-p' instead."
:type 'string
:group 'geiser-guile)
+(geiser-custom--defcustom geiser-guile-load-init-file-p nil
+ "Whether to load ~/.guile when starting Guile.
+Note that, due to peculiarities in the way Guile loads its init
+file, using `geiser-guile-init-file' is not equivalent to setting
+this variable to t."
+ :type 'boolean
+ :group 'geiser-guile)
+
(geiser-custom--defcustom geiser-guile-debug-show-bt-p nil
"Whether to autmatically show a full backtrace when entering the debugger.
If `nil', only the last frame is shown."
@@ -111,10 +121,12 @@ effect on new REPLs. For existing ones, use the command
"Return a list with all parameters needed to start Guile.
This function uses `geiser-guile-init-file' if it exists."
(let ((init-file (and (stringp geiser-guile-init-file)
- (expand-file-name geiser-guile-init-file))))
+ (expand-file-name geiser-guile-init-file)))
+ (q-flags (or geiser-guile-load-init-file-p '("-q"))))
`(,@(and (listp geiser-guile-binary) (cdr geiser-guile-binary))
- "-q" "-L" ,(expand-file-name "guile/" geiser-scheme-dir)
- ,@(apply 'append (mapcar (lambda (p) (list "-L" p)) geiser-guile-load-path))
+ ,@q-flags "-L" ,(expand-file-name "guile/" geiser-scheme-dir)
+ ,@(apply 'append (mapcar (lambda (p) (list "-L" p))
+ geiser-guile-load-path))
,@(and init-file (file-readable-p init-file) (list "-l" init-file)))))
;;(defconst geiser-guile--prompt-regexp "^[^() \n]+@([^)]*?)> ")