From f5bf77dfaef2be1844865ca535714907bc657da3 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Thu, 24 Oct 2013 19:33:42 -0700 Subject: [PATCH] * lisp/vc/vc.el (vc-print-log): Don't use a working revision unless one was explicitly specified. Fixes: debbugs:15322 --- lisp/ChangeLog | 5 +++++ lisp/vc/vc.el | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2513f838b57..161e7be2ae0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2013-10-25 Glenn Morris + + * vc/vc.el (vc-print-log): Don't use a working revision unless + one was explicitly specified. (Bug#15322) + 2013-10-25 Stefan Monnier * subr.el (add-to-list): Preserve return value in compiler-macro 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 -- 2.39.5