blob: e6e0c9add1707ecc8f805ecc24d1059ef00a2e20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
;; geiser-guile.el -- guile's implementation of the geiser protocols
;; Copyright (C) 2009 Jose Antonio Ortega Ruiz
;; Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
;; Start date: Sun Mar 08, 2009 23:03
;; This file is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3 of the License, or
;; (at your option) any later version.
;; This file is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Comentary:
;; Implementation of all required Elisp Geiser protocols for Guile.
;;; Code:
(require 'geiser-syntax)
(require 'geiser-custom)
(require 'geiser-base)
;;; Customization:
(defgroup geiser-guile nil
"Customization for Geiser's Guile flavour."
:group 'geiser)
(defcustom geiser-guile-binary
(cond ((eq system-type 'windows-nt) "guile.exe")
((eq system-type 'darwin) "guile")
(t "guile"))
"Name to use to call the Guile executable when starting a REPL."
:type '(choice string (repeat string))
:group 'geiser-guile)
(defcustom geiser-guile-init-file "~/.guile-geiser"
"Initialization file with user code for the Guile REPL."
:type 'string
:group 'geiser-guile)
(defcustom geiser-guile-use-compiler-in-eval t
"When enable, always use Guile's compiler to perform evaluation.
Recommended, since the compiler usually collects better metadata
than the interpreter."
:type 'boolean
:group 'geiser-guile)
;;; REPL support:
(defun geiser-guile-binary ()
(if (listp geiser-guile-binary) (car geiser-guile-binary) geiser-guile-binary))
(defun geiser-guile-parameters ()
"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))))
`(,@(and (listp geiser-guile-binary) (cdr geiser-guile-binary))
"-q" "-L" ,(expand-file-name "guile/" geiser-scheme-dir)
,@(and init-file (file-readable-p init-file) (list "-l" init-file)))))
(defconst geiser-guile-prompt-regexp "^[^() \n]+@([^)]*?)> ")
(defun switch-to-guile (&optional ask)
(interactive "P")
(switch-to-geiser ask 'guile))
(defun run-guile ()
"Run Geiser using Guile."
(interactive)
(run-geiser 'guile))
;;; Evaluation support:
(defun geiser-guile-geiser-procedure (proc)
(let ((proc (intern (format "ge:%s"
(if (and geiser-guile-use-compiler-in-eval
(eq proc 'eval))
'compile
proc)))))
`(@ (geiser emacs) ,proc)))
(defconst geiser-guile--module-re
"(define-module +\\(([^)]+)\\)")
(defun geiser-guile-get-module (&optional module)
(cond ((null module)
(save-excursion
(goto-char (point-min))
(if (re-search-forward geiser-guile--module-re nil t)
(geiser-guile-get-module (match-string-no-properties 1))
:f)))
((listp module) module)
((stringp module) (or (ignore-errors (car (read-from-string module))) :f))
(t :f)))
(defun geiser-guile-symbol-begin (module)
(if module
(max (save-excursion (beginning-of-line) (point))
(save-excursion (skip-syntax-backward "^(>") (1- (point))))
(save-excursion (skip-syntax-backward "^-()>") (point))))
;;; Trying to ascertain whether a buffer is Guile Scheme:
(defun geiser-guile-guess ()
"Return `t' if the current buffer looks like a Guile file."
(listp (geiser-guile-get-module)))
(provide 'geiser-guile)
;;; geiser-guile.el ends here
|