summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2013-09-19 18:24:00 +0200
committerJose Antonio Ortega Ruiz <jao@gnu.org>2013-09-19 18:24:00 +0200
commit401a15abc2302ccc870c1df386e5b7cb9880ab43 (patch)
treefdbb85c8f4036d7361f040d45a3dd701497c89b6
parent5f7e332259eb4b0bd46c165384e85d5a4d9d8908 (diff)
downloadgeiser-401a15abc2302ccc870c1df386e5b7cb9880ab43.tar.gz
geiser-401a15abc2302ccc870c1df386e5b7cb9880ab43.tar.bz2
News about MELPA support
-rw-r--r--NEWS6
-rw-r--r--doc/install.texi10
2 files changed, 10 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index b3770fe..5cb751c 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,7 @@
New features:
+ - Geiser is now available from MELPA.
- Racket: new commands geiser-racket-{show, hide, toggle}-submodules,
for folding submodule forms in code buffers.
- Racket: interaction with submodules (entering them and evaluation
@@ -12,7 +13,6 @@
it, by Darren Hoo.
- Improvements to syntax highlighting (define/match in racket).
-
Bug fixes:
- Autodoc for Guile 2.0.9+'s subr fixed, thanks to Ludovic Courtès.
@@ -20,6 +20,10 @@
chars: all UTF-8 characters should be fair game now.
- Fixed problems with geiser-doc's history being handled by
session.el (by not letting the latter handle it).
+ - Paths in `geiser-load-path' are now also added to
+ `%load-compiled-path'. Ditto for paths added via
+ `geiser-add-to-load-path`.
+ - Compatibility fixes for Emacs snapshots.
* Version 0.4 (May 2, 2013)
diff --git a/doc/install.texi b/doc/install.texi
index 38f67af..90c6385 100644
--- a/doc/install.texi
+++ b/doc/install.texi
@@ -47,17 +47,17 @@ 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}
-or in Geiser's repository, located at
-@code{http://download.savannah.gnu.org/releases/geiser/packages}. To
-tell Emacs that a repo exists, you add it to @code{package-archives}:
+(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}:
@example
(require 'package)
(add-to-list 'package-archives
'("marmalade" . "http://marmalade-repo.org/packages/"))
-;; You don't need this one if you have marmalade:
+;; You don't need this one if you prefer marmalade and released versions:
;; (add-to-list 'package-archives
-;; '("geiser" . "http://download.savannah.gnu.org/releases/geiser/packages"))
+;; '("melpa" . "http://melpa.milkbox.net/packages/"))
(package-initialize)
@end example