summarylogtreecommitdiffstats
path: root/icicles.install
diff options
context:
space:
mode:
Diffstat (limited to 'icicles.install')
-rw-r--r--icicles.install16
1 files changed, 16 insertions, 0 deletions
diff --git a/icicles.install b/icicles.install
new file mode 100644
index 000000000000..edaee6e043de
--- /dev/null
+++ b/icicles.install
@@ -0,0 +1,16 @@
+post_install() {
+ cat << EOM
+ Put this code into your ~/.emacs
+ (setq load-path (cons "/usr/share/emacs/site-lisp/icicles" load-path))
+ (require 'icicles)
+
+ Documentation can be found at http://www.emacswiki.org/emacs/Icicles
+
+ The file ring+.el should be loaded after loading the standard
+ GNU file ring.el. So, in your ~/.emacs file, do this:
+ (eval-after-load "ring" '(progn (require 'ring+)))
+EOM
+}
+post_upgrade() {
+ post_install
+} \ No newline at end of file