From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ulrich Neumerkel Newsgroups: gmane.emacs.devel,gmane.emacs.pretest.bugs Subject: 23.0.50; vc: missing done in progress message Date: Mon, 28 Jan 2008 00:12:50 +0100 Message-ID: NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1201475601 25463 80.91.229.12 (27 Jan 2008 23:13:21 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 27 Jan 2008 23:13:21 +0000 (UTC) To: emacs-pretest-bug@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jan 28 00:13:41 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JJGh0-0006H7-7d for ged-emacs-devel@m.gmane.org; Mon, 28 Jan 2008 00:13:38 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJGgZ-0005Yp-Cd for ged-emacs-devel@m.gmane.org; Sun, 27 Jan 2008 18:13:11 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJGgV-0005Yk-Tp for emacs-devel@gnu.org; Sun, 27 Jan 2008 18:13:07 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJGgU-0005YY-QO for emacs-devel@gnu.org; Sun, 27 Jan 2008 18:13:07 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJGgU-0005YV-NA for emacs-devel@gnu.org; Sun, 27 Jan 2008 18:13:06 -0500 Original-Received: from fencepost.gnu.org ([140.186.70.10]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JJGgU-0002az-OF for emacs-devel@gnu.org; Sun, 27 Jan 2008 18:13:06 -0500 Original-Received: from mail.gnu.org ([199.232.76.166] helo=mx10.gnu.org) by fencepost.gnu.org with esmtp (Exim 4.67) (envelope-from ) id 1JJGgU-0005Zx-CM for emacs-pretest-bug@gnu.org; Sun, 27 Jan 2008 18:13:06 -0500 Original-Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1JJGgQ-0002a1-Kc for emacs-pretest-bug@gnu.org; Sun, 27 Jan 2008 18:13:05 -0500 Original-Received: from a4.complang.tuwien.ac.at ([128.130.173.65]) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JJGgQ-0002Yc-A2 for emacs-pretest-bug@gnu.org; Sun, 27 Jan 2008 18:13:02 -0500 Original-Received: from ulrich by a4.complang.tuwien.ac.at with local (Exim 4.63) (envelope-from ) id 1JJGgE-0000n5-Q2 for emacs-pretest-bug@gnu.org; Mon, 28 Jan 2008 00:12:50 +0100 X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 3) X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:87669 gmane.emacs.pretest.bugs:20781 Archived-At: --text follows this line-- Please write in English if possible, because the Emacs maintainers usually do not have translators to read other languages for them. Your bug report will be posted to the emacs-pretest-bug@gnu.org mailing list. Please describe exactly what actions triggered the bug and the precise symptoms of the bug: I do C-x v = expecting a long run, the message Finding changes in /opt/gupu/src/pl-gitp/pl/boot/syspred.pl... appears, but no done is shown. So I have the impression that git is still working. >From ca95ee0ca2448ee2a83ea06ef2dad14acb65f823 Mon Sep 17 00:00:00 2001 From: Ulrich Neumerkel Date: Mon, 28 Jan 2008 00:06:00 +0100 Subject: [PATCH] Added ... done to progress message --- lisp/vc.el | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/lisp/vc.el b/lisp/vc.el index ffe38a6..8ddbdce 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -2005,6 +2005,7 @@ returns t if the buffer had changes, nil otherwise." (let ((vc-disable-async-diff (not async))) (vc-call diff files rev1 rev2 "*vc-diff*")) (set-buffer "*vc-diff*") + (message "Finding changes in %s... done" filenames) (if (and (zerop (buffer-size)) (not (get-buffer-process (current-buffer)))) ;; Treat this case specially so as not to pop the buffer. -- 1.5.3.6