summaryrefslogtreecommitdiff
path: root/lisp/vc
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2013-10-24 19:33:42 -0700
committerGlenn Morris <rgm@gnu.org>2013-10-24 19:33:42 -0700
commitf5bf77dfaef2be1844865ca535714907bc657da3 (patch)
tree1cce544ad4b4c78e96cf3e5c820cb9b3ed331730 /lisp/vc
parentda504eec7088eeb698f3987900ed7757363602c3 (diff)
downloademacs-f5bf77dfaef2be1844865ca535714907bc657da3.tar.gz
emacs-f5bf77dfaef2be1844865ca535714907bc657da3.tar.bz2
emacs-f5bf77dfaef2be1844865ca535714907bc657da3.zip
* lisp/vc/vc.el (vc-print-log): Don't use a working revision unless
one was explicitly specified. Fixes: debbugs:15322
Diffstat (limited to 'lisp/vc')
-rw-r--r--lisp/vc/vc.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el
index 11cfeb403d4..39bea10dc15 100644
--- a/lisp/vc/vc.el
+++ b/lisp/vc/vc.el
@@ -2302,7 +2302,8 @@ WORKING-REVISION and LIMIT."
(let* ((vc-fileset (vc-deduce-fileset t)) ;FIXME: Why t? --Stef
(backend (car vc-fileset))
(files (cadr vc-fileset))
- (working-revision (or working-revision (vc-working-revision (car files)))))
+;; (working-revision (or working-revision (vc-working-revision (car files))))
+ )
(vc-print-log-internal backend files working-revision nil limit)))
;;;###autoload