Skip to content

Commit 88d679a

Browse files
committed
Merge pull request clojure-emacs#114 from bbatsov/commentary-improvements
A couple of improvements to the commentary section of clojure-mode.el
2 parents 162964f + d1aec9c commit 88d679a

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

clojure-mode.el

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
;;; clojure-mode.el --- Major mode for Clojure code
22

3-
;; Copyright (C) 2007-2011 Jeffrey Chu, Lennart Staflin, Phil Hagelberg
3+
;; Copyright (C) 2007-2013 Jeffrey Chu, Lennart Staflin, Phil Hagelberg
44
;;
55
;; Authors: Jeffrey Chu <jochu0@gmail.com>
66
;; Lennart Staflin <lenst@lysator.liu.se>
@@ -21,11 +21,17 @@
2121

2222
;;; Installation:
2323

24-
;; Use package.el. You'll need to add Marmalade to your archives:
24+
;; Use package.el. You'll need to add Marmalade or MELPA to your archives:
2525

26+
;; ;; Marmalade setup
2627
;; (require 'package)
2728
;; (add-to-list 'package-archives
2829
;; '("marmalade" . "http://marmalade-repo.org/packages/"))
30+
;;
31+
;; ;; MELPA setup
32+
;; (require 'package)
33+
;; (add-to-list 'package-archives
34+
;; '("melpa" . "http://melpa.milkbox.net/packages/") t)
2935

3036
;; If you use a version of Emacs prior to 24 that doesn't include
3137
;; package.el, you can get it from http://bit.ly/pkg-el23. If you have
@@ -37,16 +43,15 @@
3743
;; byte-compilation and autoloads.
3844

3945
;; Using clojure-mode with paredit is highly recommended. It is also
40-
;; available using package.el from the above archive.
46+
;; available using package.el from the above archives.
4147

4248
;; Use paredit as you normally would with any other mode; for instance:
4349
;;
4450
;; ;; require or autoload paredit-mode
45-
;; (defun turn-on-paredit () (paredit-mode 1))
46-
;; (add-hook 'clojure-mode-hook 'turn-on-paredit)
51+
;; (add-hook 'clojure-mode-hook 'paredit-mode)
4752

48-
;; See Swank Clojure (http://github.com/technomancy/swank-clojure) for
49-
;; better interaction with subprocesses via SLIME.
53+
;; See nREPL.el (http://github.com/kingtim/nrepl.el) for
54+
;; better interaction with subprocesses via nREPL.
5055

5156
;;; License:
5257

0 commit comments

Comments
 (0)