From: Alexandre Julliard Date: Sat, 7 Feb 2009 13:21:58 +0000 (+0100) Subject: git.el: Add some notes about Emacs versions compatibility. X-Git-Tag: v1.6.2-rc0~5 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=5a7b3bf5275adf86fdd23f8824562b88c8a20e33;p=git.git git.el: Add some notes about Emacs versions compatibility. Signed-off-by: Alexandre Julliard --- diff --git a/contrib/emacs/git.el b/contrib/emacs/git.el index 7651a0a8e..fcbe2d9cf 100644 --- a/contrib/emacs/git.el +++ b/contrib/emacs/git.el @@ -1,6 +1,6 @@ ;;; git.el --- A user interface for git -;; Copyright (C) 2005, 2006, 2007 Alexandre Julliard +;; Copyright (C) 2005, 2006, 2007, 2008, 2009 Alexandre Julliard ;; Version: 1.0 @@ -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 @@ -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)