Browse Source

git.el: Add some notes about Emacs versions compatibility.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
maint
Alexandre Julliard 16 years ago
parent
commit
5a7b3bf527
  1. 12
      contrib/emacs/git.el

12
contrib/emacs/git.el

@ -1,6 +1,6 @@
;;; git.el --- A user interface for git ;;; 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 ;; Version: 1.0


@ -34,7 +34,6 @@
;; To start: `M-x git-status' ;; To start: `M-x git-status'
;; ;;
;; TODO ;; TODO
;; - portability to XEmacs
;; - diff against other branch ;; - diff against other branch
;; - renaming files from the status buffer ;; - renaming files from the status buffer
;; - creating tags ;; - creating tags
@ -43,6 +42,15 @@
;; - git-show-branch browser ;; - 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)) (eval-when-compile (require 'cl))
(require 'ewoc) (require 'ewoc)
(require 'log-edit) (require 'log-edit)

Loading…
Cancel
Save