summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-05-20 14:14:59 +0200
committerGravatar Tom Willemsen2012-05-20 14:14:59 +0200
commit6b7f2adfa438e6c7b24e798652cf448a007c2621 (patch)
treedc5baa5db5bc21c55215c273ca30ecfb3f73fa93
parent71a6ef8cd1406e057684aa35b6738a78e18c3967 (diff)
downloadgit-auto-commit-mode-6b7f2adfa438e6c7b24e798652cf448a007c2621.tar.gz
git-auto-commit-mode-6b7f2adfa438e6c7b24e798652cf448a007c2621.zip
Prepare for packaging
Add Author, Keywords and URL to header, add explanation to header and add a ChangeLog heading. Add '... ends here' line.
-rw-r--r--git-auto-commit-mode.el20
1 files changed, 15 insertions, 5 deletions
diff --git a/git-auto-commit-mode.el b/git-auto-commit-mode.el
index b840f7e..d41deb7 100644
--- a/git-auto-commit-mode.el
+++ b/git-auto-commit-mode.el
@@ -2,10 +2,11 @@
;; Copyright (C) 2012 Tom Willemsen <tom@ryuslash.org>
+;; Author: Tom Willemsen <tom@ryuslash.org>
;; Created: Jan 9, 2012
;; Version: 1
-
-;; This file is not part of GNU Emacs.
+;; Keywords: vc
+;; URL: http://ryuslash.org/git-auto-commit-mode/
;; This file is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License
@@ -18,9 +19,16 @@
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
-;; along with this file; if not, write to the Free Software
-;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
-;; 02110-1301, USA.
+;; along with this file; If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; git-auto-commit-mode is an Emacs minor mode that tries to commit
+;; changes to a file after every save.
+
+;;; Change Log:
+
+;; 1 - Initial release.
;;; Code:
@@ -52,3 +60,5 @@ turned on"
(if git-auto-commit-mode
(add-hook 'after-save-hook 'git-auto-commit t t)
(remove-hook 'after-save-hook 'git-auto-commit t)))
+
+;;; git-auto-commit-mode.el ends here