From d3fe383cf8d22686f56defa7c5215243a1181424 Mon Sep 17 00:00:00 2001 From: Brian Denheyer Date: Mon, 27 Apr 2015 21:54:11 -0700 Subject: [PATCH 1/3] added some help about cl-lib for emacs23 --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index a7a2f4f54..a02c993bb 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,15 @@ for setup and user guide. `haskell-mode` supports GNU Emacs versions 23, 24 and upcoming 25 (snapshot). +Emacs23 requires an the use of "cl-lib". cl-lib.el can be found in +the tests/compat directory. Copy cl-lib.el to your emacs +directory, e.g. ~/.emacs.d directory and put + +(add-to-list 'load-path "~/.emacs.d/") +(require 'cl-lib) + +in your .emacs file. + `haskell-mode` is available from [melpa-stable](http://http://stable.melpa.org) (releases) and [melpa](http://melpa.org) (git snapshots). From dd8a67e1e5b4158a841a1977b19aa489ff998269 Mon Sep 17 00:00:00 2001 From: Brian Denheyer Date: Mon, 27 Apr 2015 21:57:18 -0700 Subject: [PATCH 2/3] *** empty log message *** --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a02c993bb..5fafe9f50 100644 --- a/README.md +++ b/README.md @@ -66,8 +66,10 @@ Emacs23 requires an the use of "cl-lib". cl-lib.el can be found in the tests/compat directory. Copy cl-lib.el to your emacs directory, e.g. ~/.emacs.d directory and put -(add-to-list 'load-path "~/.emacs.d/") +```el +(add-to-list 'load-path "~/.emacs.d/" (require 'cl-lib) +``` in your .emacs file. From 0636de2fff1303a94fe46e408cfb1c1dc854f966 Mon Sep 17 00:00:00 2001 From: Brian Denheyer Date: Mon, 27 Apr 2015 21:58:18 -0700 Subject: [PATCH 3/3] well- the message is finally formatted properly- i hope --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5fafe9f50..1354d4845 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ the tests/compat directory. Copy cl-lib.el to your emacs directory, e.g. ~/.emacs.d directory and put ```el -(add-to-list 'load-path "~/.emacs.d/" +(add-to-list 'load-path "~/.emacs.d/") (require 'cl-lib) ```