summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathieu2em <math.per@hotmail.com>2019-08-20 15:25:51 -0400
committermathieu2em <math.per@hotmail.com>2019-08-20 15:31:38 -0400
commit56e3149aa1158743f96a5a0bdf5940eaf510a35f (patch)
tree14c3f46e010c635402c5082dcfea18301248bb0e
parentb41e0e1b2121be304aa1fa38f5ff9a681f2f3e4b (diff)
downloadgeiser-guile-56e3149aa1158743f96a5a0bdf5940eaf510a35f.tar.gz
geiser-guile-56e3149aa1158743f96a5a0bdf5940eaf510a35f.tar.bz2
correcting the typos detected in revision by Mr Jao
-rw-r--r--INSTALL27
-rw-r--r--doc/install.texi31
2 files changed, 30 insertions, 28 deletions
diff --git a/INSTALL b/INSTALL
index 7c4f241..1059da0 100644
--- a/INSTALL
+++ b/INSTALL
@@ -65,11 +65,10 @@ package-install-file.
* Gambit Addendum
These steps are necessary to fully support all Gambit Scheme functionnalities,
but are not required for any other scheme.
-
-
- # SETUP :
- 1 - clone the last version of gambit and of this repo
- 2 - configure gambit using --enable-rtlib-debuf-source to activate autodoc
+
+ # SETUP :
+ 1 - clone the last version of gambit and of this repo
+ 2 - configure gambit using --enable-rtlib-debug-source to activate autodoc
``` bash
$ cd ~/
$ git clone "the gambit repo address"
@@ -80,34 +79,34 @@ package-install-file.
$ make -j
$ make install
```
- 3 - put a link to geiser/elisp/geiser.el in your init file
- in your init file paste :
+ 3 - put a link to geiser/elisp/geiser.el in your init file
+ in your init file paste :
``` elisp
(load-file "~/geiser/elisp/geiser.el")
```
(the path is your path to geiser.el.)
-
+
# setup REMOTE CONNECT TO A GAMBIT REPL
1 - you need to enable the gambit/geiser module
( if you can't, substitute the command below
- with the PS: at the end of the readme )
+ with the PS: at the end of the readme )
``` bash
$ mkdir ~/gambit/lib/gambit/geiser
$ cp ~/geiser/geiser-module/* ~/gambit/lib/geiser/
```
- 2 - now that you have the module you start gsi with it and using the -:d@
+ 2 - now that you have the module you start gsi with it and using the -:d@
``` bash
$ gsi -:d gambit/geiser -
```
- 3 - you can now open emacs and write
+ 3 - you can now open emacs and write
```
M-x geiser-connect gambit
```
Enjoy !
-PS:
-if you are unable to use gambit modules , open gsi with the gambit.scm file
-located in geiser/scheme/gambit/geiser/gambit.scm
+By the way, if you are unable to use gambit modules,
+open gsi with the gambit.scm file
+located in geiser/scheme/gambit/geiser/gambit.scm
something like : gsi -:d@ ~/geiser/scheme/gambit/geiser/gambit.scm -
diff --git a/doc/install.texi b/doc/install.texi
index 495a1d0..68a3566 100644
--- a/doc/install.texi
+++ b/doc/install.texi
@@ -87,12 +87,12 @@ package-install-file}.
@cindex Gambit
@cindex Gambit installation
-If you plan to use Gambit , you'll need also to open a terminal and
+If you plan to use Gambit, you'll also need to open a terminal and
configure a couple of awesome Gambit's features:
SETUP :
1 - clone the last version of gambit and of this repo
- 2 - configure gambit using --enable-rtlib-debuf-source to activate autodoc
+ 2 - configure gambit using --enable-rtlib-debug-source to activate autodoc
@example
$ cd ~/
$ git clone "the gambit repo current address"
@@ -103,37 +103,40 @@ configure a couple of awesome Gambit's features:
$ make -j
$ make install
@end example
- 3 - put a link to geiser/elisp/geiser.el in your init file
- in your init file paste :
+ 3 - put a link to geiser/elisp/geiser.el in your init file
+ in your init file paste :
@example
(load-file "~/geiser/elisp/geiser.el")
@end example
(the path is your path to geiser.el.)
-
+
# setup REMOTE CONNECT TO A GAMBIT REPL
1 - you need to enable the gambit/geiser module
( if you can't, substitute the command below
- with the PS: at the end of the readme )
+ with the PS: at the end of the readme )
@example
$ mkdir ~/gambit/lib/gambit/geiser
$ cp ~/geiser/geiser-module/* ~/gambit/lib/geiser/
@end example
- 2 - now that you have the module you start gsi with it and using the -:d@
+ 2 - now that you have the module you start gsi with it and using the -:d@
@example
$ gsi -:d gambit/geiser -
@end example
- 3 - you can now open emacs and write
+ 3 - you can now open emacs and write
@example
M-x geiser-connect gambit
@end example
Enjoy !
-PS:
-if you are unable to use gambit modules , open gsi with the gambit.scm file
-located in geiser/scheme/gambit/geiser/gambit.scm
-
-something like : gsi -:d@ ~/geiser/scheme/gambit/geiser/gambit.scm -
-(keep in mind that these paths may be a little different for you)
+By the way,
+if you are unable to use gambit modules, open gsi with
+the @file{gambit.scm} file located in
+@file{geiser/scheme/gambit/geiser/gambit.scm}
+something like :
+@example
+ gsi -:d@ ~/geiser/scheme/gambit/geiser/gambit.scm -
+@end example
+(Keep in mind that these paths may be a little different for you.)
@cindex Chicken
@cindex Chicken installation