summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2014-08-30 20:46:28 +0200
committerJose Antonio Ortega Ruiz <jao@gnu.org>2014-08-30 20:46:28 +0200
commit270e94ec59594a9ca43d09e4e841528e030129ff (patch)
treef8581ddef97991ef8da0df85b6d11c59ec421634
parente396c98f49448afe1584fb2be3e0a648acba3598 (diff)
downloadgeiser-guile-270e94ec59594a9ca43d09e4e841528e030129ff.tar.gz
geiser-guile-270e94ec59594a9ca43d09e4e841528e030129ff.tar.bz2
I meant Marmalade, of course. MELPA stable seems better.
-rw-r--r--doc/install.texi14
1 files changed, 11 insertions, 3 deletions
diff --git a/doc/install.texi b/doc/install.texi
index 964cce9..c55bc42 100644
--- a/doc/install.texi
+++ b/doc/install.texi
@@ -46,14 +46,22 @@ for earlier versions, the page i just linked to twice will tell you
where to find the goodies.
ELPA packages live in repositories accessible via HTTP. You can find
-Geiser's package in @uref{http://melpa.milkbox.net, MELPA} (directly
-from the git repo). To tell Emacs that a repo exists, you add it to
+Geiser's package in either
+@uref{http://melpa-stable.milkbox.net/#/geiser, MELPA stable} or, if you
+like living on the bleeding edge,
+@uref{http://melpa.milkbox.net/#/geiser, MELPA} (directly from the git
+repo). To tell Emacs that an ELPA repo exists, you add it to
@code{package-archives}:
@example
(require 'package)
+;;; either the stable version:
+
(add-to-list 'package-archives
- '("melpa" . "http://melpa.milkbox.net/packages/"))
+ ;; choose either the stable or the latest git version:
+ ;; '("melpa-stable" . "http://melpa-stable.milkbox.net/packages/")
+ '("melpa-unstable" . "http://melpa.milkbox.net/packages/"))
+
(package-initialize)
@end example