diff options
| author | Taylor R Campbell <campbell@mumble.net> | 2011-02-24 16:00:24 +0000 | 
|---|---|---|
| committer | Taylor R Campbell <campbell@mumble.net> | 2011-02-24 16:00:24 +0000 | 
| commit | d3723a02fa0dbaaf8258a986c3696ace3d7a6616 (patch) | |
| tree | 280db349eaae0a5eea4df77dcb0cd644d85fe89f | |
| parent | 79fd488b9dbd55f59e713de51fb97563d969cf32 (diff) | |
Tweak second page.  Remove rants and IRC reference.
Ignore-this: cd6f3d71cd36d3cbc1140397f572fe25
darcs-hash:20110224160024-00fcc-2ac38ea602b64fa971ac4b0c9f5e6bc196e07a7f
| -rw-r--r-- | paredit.el | 28 | 
1 files changed, 9 insertions, 19 deletions
| @@ -44,33 +44,23 @@  ;;;     "Turn on pseudo-structural editing of Lisp code."  ;;;     t)  ;;; -;;; Enable 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: +;;; 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:  ;;;  ;;;   (add-hook M-mode-hook 'enable-paredit-mode)  ;;;  ;;; Customize paredit using `eval-after-load':  ;;;  ;;;   (eval-after-load 'paredit -;;;     '(progn ...redefine keys, &c....)) +;;;     '(progn +;;;        (define-key paredit-mode-map (kbd "ESC M-A-C-s-)") +;;;          'paredit-dwim)))  ;;; -;;; Paredit should run in GNU Emacs 21 or later and XEmacs 21.5 or -;;; later.  Paredit is highly unlikely to work in earlier versions of -;;; GNU Emacs, and it may have obscure problems in earlier versions of -;;; XEmacs due to the way its syntax parser reports conditions, as a -;;; result of which the code that uses the syntax parser must mask all -;;; error conditions, not just those generated by the syntax parser. -;;; -;;; Questions, bug reports, comments, feature suggestions, &c., may be -;;; addressed via email to the author's surname at mumble.net or via -;;; IRC to the user named Riastradh on irc.freenode.net in the #paredit -;;; channel. +;;; Send questions, bug reports, comments, feature suggestions, &c., +;;; via email to the author's surname at mumble.net.  ;;; -;;; Please contact the author rather than forking your own versions, to -;;; prevent the dissemination of random variants floating about the -;;; internet unbeknownst to the author.  Laziness is not an excuse: -;;; your laziness costs me confusion and time trying to support -;;; paredit, so if you fork paredit, you make the world a worse place. +;;; Paredit should run in GNU Emacs 21 or later and XEmacs 21.5 or +;;; later.  ;;;  ;;; *** WARNING *** IMPORTANT *** DO NOT SUBMIT BUGS BEFORE READING ***  ;;; | 
