From 3a59f3dbfd1fcf5d04e55b15eb01ae4b4bb61c0f Mon Sep 17 00:00:00 2001 Message-Id: <3a59f3dbfd1fcf5d04e55b15eb01ae4b4bb61c0f.1747251312.git.mdw@distorted.org.uk> From: Mark Wooding Date: Wed, 19 Dec 2007 18:00:07 +0000 Subject: [PATCH] Emacs mode: Add an explanatory header MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Organization: Straylight/Edgeware From: Karl Hasselström Signed-off-by: Karl Hasselström Signed-off-by: David Kågedal --- contrib/stgit.el | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/contrib/stgit.el b/contrib/stgit.el index 09dec8b..cce0c0e 100644 --- a/contrib/stgit.el +++ b/contrib/stgit.el @@ -1,3 +1,14 @@ +;; stgit.el: An emacs mode for StGit +;; +;; Copyright (C) 2007 David Kågedal +;; +;; To install: put this file on the load-path and place the following +;; in your .emacs file: +;; +;; (require 'stgit) +;; +;; To start: `M-x stgit' + (defun stgit (dir) "Manage stgit patches" (interactive "DDirectory: \n") @@ -146,3 +157,5 @@ (defun stgit-help () "Display help for the StGit mode." (interactive) (describe-function 'stgit-mode)) + +(provide 'stgit) -- [mdw]