blob: 72cd3db15a20fe147c0557ddf66d2fa25fd6cdfe (
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
|
;;; emacs.scm -- procedures for emacs interaction: entry point
;; Copyright (C) 2009 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
;; have received a copy of the license along with this program. If
;; not, see <http://www.xfree86.org/3.3.6/COPYRIGHT2.html#5>.
;; Start date: Sun Feb 08, 2009 18:39
(define-module (geiser emacs)
#:re-export (ge:eval
ge:compile
ge:macroexpand
ge:compile-file
ge:load-file
ge:autodoc
ge:completions
ge:module-completions
ge:symbol-location
ge:generic-methods
ge:symbol-documentation
ge:module-exports
ge:module-location
ge:callers
ge:callees
ge:find-file)
#:use-module (geiser evaluation)
#:use-module ((geiser modules) :renamer (symbol-prefix-proc 'ge:))
#:use-module ((geiser completion) :renamer (symbol-prefix-proc 'ge:))
#:use-module ((geiser xref) :renamer (symbol-prefix-proc 'ge:))
#:use-module ((geiser doc) :renamer (symbol-prefix-proc 'ge:)))
;;; emacs.scm ends here
|