Skip to content

Commit

Permalink
git.el: Add some notes about Emacs versions compatibility.
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
  • Loading branch information
Alexandre Julliard committed Feb 7, 2009
1 parent 6c4f70d commit 5a7b3bf
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions contrib/emacs/git.el
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
;;; git.el --- A user interface for git

;; Copyright (C) 2005, 2006, 2007 Alexandre Julliard <julliard@winehq.org>
;; Copyright (C) 2005, 2006, 2007, 2008, 2009 Alexandre Julliard <julliard@winehq.org>

;; Version: 1.0

Expand Down Expand Up @@ -34,7 +34,6 @@
;; To start: `M-x git-status'
;;
;; TODO
;; - portability to XEmacs
;; - diff against other branch
;; - renaming files from the status buffer
;; - creating tags
Expand All @@ -43,6 +42,15 @@
;; - git-show-branch browser
;;

;;; Compatibility:
;;
;; This file works on GNU Emacs 21 or later. It may work on older
;; versions but this is not guaranteed.
;;
;; It may work on XEmacs 21, provided that you first install the ewoc
;; and log-edit packages.
;;

(eval-when-compile (require 'cl))
(require 'ewoc)
(require 'log-edit)
Expand Down

0 comments on commit 5a7b3bf

Please sign in to comment.