diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2014-08-30 20:46:28 +0200 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2014-08-30 20:46:28 +0200 |
commit | ef96ae2fa94912f71069da84e691d337e03e2e28 (patch) | |
tree | a9d202a52b9bb4d4e00ece5705f3c2e96c953ebf /doc | |
parent | d8db8881325ddef634d392376440012ed3c3748c (diff) | |
download | geiser-ef96ae2fa94912f71069da84e691d337e03e2e28.tar.gz geiser-ef96ae2fa94912f71069da84e691d337e03e2e28.tar.bz2 |
I meant Marmalade, of course. MELPA stable seems better.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/install.texi | 14 |
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 |