From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Axel G. Rossberg" Newsgroups: gmane.emacs.bugs Subject: vc (log-view) Date: Wed, 15 Jan 2003 16:21:10 +0100 (CET) Sender: bug-gnu-emacs-bounces+gnu-bug-gnu-emacs=m.gmane.org@gnu.org Message-ID: <20030115.162110.78715301.axel@localhost.localdomain> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1042644153 21670 80.91.224.249 (15 Jan 2003 15:22:33 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 15 Jan 2003 15:22:33 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18YpN7-0005cm-00 for ; Wed, 15 Jan 2003 16:22:29 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18YpNi-00056Z-07 for gnu-bug-gnu-emacs@m.gmane.org; Wed, 15 Jan 2003 10:23:06 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18YpNb-00055m-00 for bug-gnu-emacs@gnu.org; Wed, 15 Jan 2003 10:22:59 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18YpMh-0004fY-00 for bug-gnu-emacs@gnu.org; Wed, 15 Jan 2003 10:22:03 -0500 Original-Received: from [132.230.97.150] (helo=localhost.localdomain) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18YpLs-0003ax-00 for bug-gnu-emacs@gnu.org; Wed, 15 Jan 2003 10:21:12 -0500 Original-Received: from localhost (IDENT:axel@localhost.localdomain [127.0.0.1]) by localhost.localdomain (8.11.6/8.11.6) with ESMTP id h0FFLAU15771 for ; Wed, 15 Jan 2003 16:21:11 +0100 Original-To: bug-gnu-emacs@gnu.org X-Mailer: Mew version 3.1 on Emacs 21.2 / Mule 5.0 (SAKAKI) X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Bug reports for GNU Emacs, the Swiss army knife of text editors List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: bug-gnu-emacs-bounces+gnu-bug-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.bugs:4202 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:4202 In GNU Emacs 21.2.1 (i386-redhat-linux-gnu, X toolkit, Xaw3d scroll bars) of 2002-04-09 on porky.devel.redhat.com configured using `configure i386-redhat-linux --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/usr/com --mandir=/usr/share/man --infodir=/usr/share/info --with-gcc --with-pop --with-sound' Important settings: value of $LC_ALL: nil value of $LC_COLLATE: nil value of $LC_CTYPE: nil value of $LC_MESSAGES: nil value of $LC_MONETARY: nil value of $LC_NUMERIC: nil value of $LC_TIME: nil value of $LANG: en_US locale-coding-system: iso-latin-1 default-enable-multibyte-characters: t Please describe exactly what actions triggered the bug and the precise symptoms of the bug: Calling (vc-print-log) under RCS, point is not move to the entry of the current file if the file is checked out. Reason: checked out file contain the remark "locked by: xxx" in the revision line of the log. e.g. "revision 1.2.1.14 locked by: axel;" The regexp (defconst log-view-message-re "^\\(revision \\([.0-9]+\\)\\|D \\([.0-9]+\\) .*\\)$") defined in log-view.el won't match Fix: define (defconst log-view-message-re "^\\(revision \\([.0-9]+\\).*\\|D \\([.0-9]+\\) .*\\)$") instead. Greetings, Axel