]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-git--ls-files-state): Remove unused function.
authorDan Nicolaescu <dann@ics.uci.edu>
Mon, 7 Jul 2008 16:35:48 +0000 (16:35 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Mon, 7 Jul 2008 16:35:48 +0000 (16:35 +0000)
lisp/ChangeLog
lisp/vc-git.el

index 165e92246d3e40dfad1d27d885ef95e593b8f78f..3cda36fecba0511097657b2ef2e36bb72d7b391b 100644 (file)
@@ -1,5 +1,7 @@
 2008-07-07  Dan Nicolaescu  <dann@ics.uci.edu>
 
+       * vc-git.el (vc-git--ls-files-state): Remove unused function.
+
        * vc-bzr.el (vc-bzr-after-dir-status): Deal with execute bit changes.
 
 2008-07-06  John Paul Wallington  <jpw@pobox.com>
index 079ff5abd47d424ff23e2c2fe25de538704c3600..9f18418425e2106fe9499d1f224ad668b9db2504 100644 (file)
@@ -55,7 +55,6 @@
 ;; * checkout-model (files)               OK
 ;; - workfile-unchanged-p (file)                  OK
 ;; - mode-line-string (file)                      OK
-;; - prettify-state-info (file)                   OK
 ;; STATE-CHANGING FUNCTIONS
 ;; * create-repo ()                       OK
 ;; * register (files &optional rev comment)    OK
          (vc-git--state-code (match-string 1 diff))
        (if (vc-git--empty-db-p) 'added 'up-to-date)))))
 
-(defun vc-git--ls-files-state (state &rest args)
-  "Set state to STATE on all files found with git-ls-files ARGS."
-  (with-temp-buffer
-    (apply 'vc-git-command (current-buffer) nil nil "ls-files" "-z" args)
-    (goto-char (point-min))
-    (let ((start (point)))
-      (while (search-forward "\0" nil t)
-       (let ((file (expand-file-name
-                    (buffer-substring-no-properties start (1- (point))))))
-         (vc-file-setprop file 'vc-backend (if state 'Git 'none))
-         (vc-file-setprop file 'vc-state state))
-       (setq start (point))))))
-
 (defun vc-git-working-revision (file)
   "Git-specific version of `vc-working-revision'."
   (let ((str (with-output-to-string