emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/vc-git.el,v


From: Dan Nicolaescu
Subject: [Emacs-diffs] Changes to emacs/lisp/vc-git.el,v
Date: Tue, 24 Jul 2007 13:15:07 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Dan Nicolaescu <dann>   07/07/24 13:15:06

Index: vc-git.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/vc-git.el,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- vc-git.el   23 Jul 2007 20:56:13 -0000      1.11
+++ vc-git.el   24 Jul 2007 13:15:03 -0000      1.12
@@ -44,6 +44,7 @@
 
 ;; Implement the rest of the vc interface. See the comment at the
 ;; beginning of vc.el. The current status is:
+;; ("??" means: "figure out what to do about it")
 ;;
 ;; FUNCTION NAME                                   STATUS
 ;; BACKEND PROPERTIES
@@ -56,7 +57,7 @@
 ;; * workfile-version (file)                      OK
 ;; - latest-on-branch-p (file)                    ??
 ;; * checkout-model (file)                        OK
-;; - workfile-unchanged-p (file)                  MAYBE CAN BE SIMPLIFIED
+;; - workfile-unchanged-p (file)                  OK
 ;; - mode-line-string (file)                      NOT NEEDED
 ;; - dired-state-info (file)                      OK
 ;; STATE-CHANGING FUNCTIONS
@@ -97,8 +98,8 @@
 ;; MISCELLANEOUS
 ;; - make-version-backups-p (file)                ??
 ;; - repository-hostname (dirname)                ??
-;; - previous-version (file rev)                  ??
-;; - next-version (file rev)                      ??
+;; - previous-version (file rev)                  OK
+;; - next-version (file rev)                      OK
 ;; - check-headers ()                             ??
 ;; - clear-headers ()                             ??
 ;; - delete-file (file)                                   OK
@@ -115,7 +116,7 @@
 ;; should be moved to vc-hooks.el
 (add-to-list 'vc-handled-backends 'GIT)
 (eval-after-load "vc"
-  '(add-to-list 'vc-directory-exclusion-list ".bzr" t))
+  '(add-to-list 'vc-directory-exclusion-list ".git" t))
 
 ;;; BACKEND PROPERTIES
 
@@ -251,7 +252,7 @@
      (concat (if rev rev "HEAD") ":" fullname) "cat-file" "blob")))
 
 (defun vc-git-checkout (file &optional editable rev)
-  (vc-git-command nil0 file "checkout" (or rev "HEAD")))
+  (vc-git-command nil 0 file "checkout" (or rev "HEAD")))
 
 (defun vc-git-revert (file &optional contents-done)
   "Revert FILE to the version stored in the git repository."




reply via email to

[Prev in Thread] Current Thread [Next in Thread]