diff options
author | Taylor R Campbell <campbell@mumble.net> | 2013-07-09 15:19:28 +0000 |
---|---|---|
committer | Taylor R Campbell <campbell@mumble.net> | 2013-07-09 15:19:31 +0000 |
commit | 6304b64668b0370768610e34aeb670a677fb7229 (patch) | |
tree | 96b7c10e564ffb77a5d3bbc318e5c4d309456382 | |
parent | 8b3853883c66910e6a2564a0774cdb5b61481997 (diff) |
Suggest `M-x enable-paredit-mode RET'.
The fragment above suggests autoloading `enable-paredit-mode', not
`paredit-mode', so `M-x paredit-mode RET' won't work too well...
-rw-r--r-- | paredit.el | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -44,8 +44,8 @@ ;;; "Turn on pseudo-structural editing of Lisp code." ;;; t) ;;; -;;; Start Paredit Mode on the fly with `M-x paredit-mode RET', or -;;; always enable it in a major mode `M' (e.g., `lisp') with: +;;; Start Paredit Mode on the fly with `M-x enable-paredit-mode RET', +;;; or always enable it in a major mode `M' (e.g., `lisp') with: ;;; ;;; (add-hook M-mode-hook 'enable-paredit-mode) ;;; |