summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2014-08-10 01:45:29 +0200
committerJose Antonio Ortega Ruiz <jao@gnu.org>2014-08-10 01:45:29 +0200
commite396c98f49448afe1584fb2be3e0a648acba3598 (patch)
tree51d9623effe0770d43d341c77ca9f9ff0cea1e59
parent637980cc26cb47c34ef6e35d0d2fde51aafe7fbb (diff)
downloadgeiser-chez-e396c98f49448afe1584fb2be3e0a648acba3598.tar.gz
geiser-chez-e396c98f49448afe1584fb2be3e0a648acba3598.tar.bz2
MELPA is hopeless (at least for the time being)
-rw-r--r--doc/install.texi12
1 files changed, 4 insertions, 8 deletions
diff --git a/doc/install.texi b/doc/install.texi
index 0452ec7..964cce9 100644
--- a/doc/install.texi
+++ b/doc/install.texi
@@ -46,18 +46,14 @@ 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 either in @uref{http://marmalade-repo.org, Marmalade}
-(for releases) or in @uref{http://melpa.milkbox.net, MELPA} (for the
-unstable version directly from the git repo). To tell Emacs that a repo
-exists, you add it to @code{package-archives}:
+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
+@code{package-archives}:
@example
(require 'package)
(add-to-list 'package-archives
- '("marmalade" . "http://marmalade-repo.org/packages/"))
-;; You don't need this one if you prefer marmalade and released versions:
-;; (add-to-list 'package-archives
-;; '("melpa" . "http://melpa.milkbox.net/packages/"))
+ '("melpa" . "http://melpa.milkbox.net/packages/"))
(package-initialize)
@end example