blob: 2ce4e82270d3e92f354808993818f77412469f72 (
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
|
;;; geiser.el --- main geiser file
;; Copyright (C) 2009 Jose Antonio Ortega Ruiz
;; Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
;; Keywords: languages, tools
;; This program 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 program 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/>.
;;; Commentary:
;; Autoloads and basic setup for geiser.
;;; Code:
;;; Locations:
(defvar geiser-root-dir nil
"Geiser's root directory.")
(defvar geiser-elisp-dir nil
"Directory containing Geiser's Elisp files.")
(defvar geiser-scheme-dir nil
"Directory containing Geiser's Scheme files.")
(setq geiser-elisp-dir (file-name-directory load-file-name))
(setq geiser-scheme-dir (expand-file-name "../scheme/" geiser-elisp-dir))
(setq geiser-root-dir (expand-file-name "../" geiser-elisp-dir))
(add-to-list 'load-path geiser-elisp-dir)
;;; Autoloads:
(autoload 'run-guile "geiser-repl.el"
"Start a Geiser Guile REPL, or switch to a running one" t)
(autoload 'switch-to-guile "geiser-repl.el"
"Start a Geiser Guile REPL, or switch to a running one" t)
(provide 'geiser)
;;; geiser.el ends here
|