diff options
author | Taylor R Campbell <campbell@mumble.net> | 2010-10-09 18:01:43 +0000 |
---|---|---|
committer | Taylor R Campbell <campbell@mumble.net> | 2010-10-09 18:01:43 +0000 |
commit | c655f5c4fd8f241ec965255965c000f2fd3535b3 (patch) | |
tree | 0d5ffcabdd5ae054007ecf033463b9015b32464f | |
parent | 30f564df98cad42fb61cd021c10b1caf47cf7b62 (diff) |
Change header and footer to conform to elisp guidelines.
Ignore-this: ef08009b23ee11fdcbdaf0bd364af57
darcs-hash:20101009180143-00fcc-34a37b8c46e54c4227569020ad757abd12d714f8
-rw-r--r-- | paredit.el | 54 |
1 files changed, 31 insertions, 23 deletions
@@ -1,26 +1,28 @@ -;;; -*- Mode: Emacs-Lisp; outline-regexp: "\n;;;;+" -*- - -;;;;;; Paredit: Parenthesis-Editing Minor Mode -;;;;;; Version 22 (beta) - -;;; NOTE: THIS IS A BETA VERSION OF PAREDIT. USE AT YOUR OWN RISK. -;;; THIS FILE IS SUBJECT TO CHANGE, AND NOT SUITABLE FOR DISTRIBUTION -;;; BY PACKAGE MANAGERS SUCH AS APT, PKGSRC, MACPORTS, &C. - -;;; Copyright (c) 2005--2010, Taylor R. Campbell -;;; -;;; Paredit is free software: you can redistribute it and/or modify it -;;; under the terms of the GNU General Public License as published by -;;; the Free Software Foundation, either version 3 of the License, or -;;; (at your option) any later version. -;;; -;;; Paredit is distributed in the hope that it will be useful, but -;;; WITHOUT ANY WARRANTY; without even the implied warranty of -;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -;;; General Public License for more details. -;;; -;;; You should have received a copy of the GNU General Public License -;;; along with paredit. If not, see <http://www.gnu.org/licenses/>. +;;; paredit.el --- minor mode for editing parentheses -*- Mode: Emacs-Lisp -*- + +;; Copyright (C) 2005--2010 Taylor R. Campbell + +;; Author: Taylor R. Campbell +;; Version: 22 (beta) +;; Created: 2005-07-31 +;; Keywords: lisp + +;; NOTE: THIS IS A BETA VERSION OF PAREDIT. USE AT YOUR OWN RISK. +;; THIS FILE IS SUBJECT TO CHANGE, AND NOT SUITABLE FOR DISTRIBUTION +;; BY PACKAGE MANAGERS SUCH AS APT, PKGSRC, MACPORTS, &C. + +;; Paredit is free software: you can redistribute it and/or modify it +;; under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. +;; +;; Paredit is distributed in the hope that it will be useful, but +;; WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. +;; +;; You should have received a copy of the GNU General Public License +;; along with paredit. If not, see <http://www.gnu.org/licenses/>. ;;; This file is permanently stored at ;;; <http://mumble.net/~campbell/emacs/paredit-22.el>. @@ -2510,3 +2512,9 @@ If no parse state is supplied, compute one from the beginning of the (paredit-annotate-functions-with-examples) (provide 'paredit) + +;;; Local Variables: +;;; outline-regexp: "\n;;;;+" +;;; End: + +;;; paredit.el ends here |