(vc-git-dir-extra-headers): Set the branch name
authorDan Nicolaescu <dann@ics.uci.edu>
Wed, 14 Oct 2009 06:28:00 +0000 (06:28 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Wed, 14 Oct 2009 06:28:00 +0000 (06:28 +0000)
correctly in the detached head case.
(vc-git-print-log): Remove unused binding.

lisp/ChangeLog
lisp/vc-git.el

index b10a077..70c22dd 100644 (file)
@@ -1,5 +1,9 @@
 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
 
+       * vc-git.el (vc-git-dir-extra-headers): Set the branch name
+       correctly in the detached head case.
+       (vc-git-print-log): Remove unused binding.
+
        * vc.el (vc-responsible-backend): When a directory is passed for
        for registration create a VC repository if no backend is
        responsible for the directory argument.
index fe7b95c..6a757e3 100644 (file)
@@ -421,7 +421,7 @@ If nil, use the value of `vc-diff-switches'.  If t, use no switches."
                      (vc-git--out-ok "config" (concat "remote." remote ".url"))))))
          (when (string-match "\\([^\n]+\\)" remote-url)
            (setq remote-url (match-string 1 remote-url))))
-      "not (detached HEAD)")
+      (setq branch "not (detached HEAD)"))
     ;; FIXME: maybe use a different face when nothing is stashed.
     (concat
      (propertize "Branch     : " 'face 'font-lock-type-face)
@@ -503,10 +503,7 @@ If nil, use the value of `vc-diff-switches'.  If t, use no switches."
 
 (defun vc-git-print-log (files &optional buffer shortlog)
   "Get change log associated with FILES."
-  (let ((coding-system-for-read git-commits-coding-system)
-       ;; Support both the old print-log interface that passes a
-       ;; single file, and the new one that passes a file list.
-       (flist (if (listp files) files (list files))))
+  (let ((coding-system-for-read git-commits-coding-system))
     ;; `vc-do-command' creates the buffer, but we need it before running
     ;; the command.
     (vc-setup-buffer buffer)