From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eric Hanchrow Newsgroups: gmane.emacs.devel Subject: PATCH: fix typo in vc-git-log-view-mode Date: Tue, 15 Sep 2009 10:34:48 -0700 Message-ID: <36366a980909151034y72587730j63348251b37bac53@mail.gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1253036113 24770 80.91.229.12 (15 Sep 2009 17:35:13 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 15 Sep 2009 17:35:13 +0000 (UTC) To: emacs-devel@gnu.org, Dan Nicolaescu Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Sep 15 19:35:06 2009 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 1Mnbvj-00022v-Cw for ged-emacs-devel@m.gmane.org; Tue, 15 Sep 2009 19:35:03 +0200 Original-Received: from localhost ([127.0.0.1]:58782 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mnbvi-0006rj-L7 for ged-emacs-devel@m.gmane.org; Tue, 15 Sep 2009 13:35:02 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mnbvc-0006r9-TF for emacs-devel@gnu.org; Tue, 15 Sep 2009 13:34:56 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MnbvW-0006o8-Rb for emacs-devel@gnu.org; Tue, 15 Sep 2009 13:34:55 -0400 Original-Received: from [199.232.76.173] (port=45371 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MnbvW-0006o0-Ni for emacs-devel@gnu.org; Tue, 15 Sep 2009 13:34:50 -0400 Original-Received: from an-out-0708.google.com ([209.85.132.249]:4585) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MnbvW-0001FU-6M for emacs-devel@gnu.org; Tue, 15 Sep 2009 13:34:50 -0400 Original-Received: by an-out-0708.google.com with SMTP id b6so1802932ana.21 for ; Tue, 15 Sep 2009 10:34:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=dvYWFhQ8AuD3HtqtUyhilEzeGmOXhYAM73cy55KceHU=; b=HpijNJbLb58R7o/6x5c52DIF5C4XJx+MdDSzuaWhewLRRPExMgn1F6k89UQytrrbRG GoqsEiBMLk1Ko9ENkK1+emffqc2GgsCZEPLuZEUEFSXEvM64mK9PD2x+lBehb9Z05ngw CMrN2ueLTmyxfuap7rvOiJHHM819VBDu0O0GQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=odRg6L54NFWw9p5FQs8m5Yc3qwP+raj3MlxEyDAz9RR/UYFbCZ6nVR3eC1Hp8VIGvU RCwto9F2G0PxRhodGR0KL7DvUttL1PIICKagPHeAxWetybGgsfD+35BO+CY16g/uONnf L80mwR6yZ+CXvweoIUvTVJzG72gT/WkKYL74M= Original-Received: by 10.101.96.5 with SMTP id y5mr7168879anl.89.1253036088905; Tue, 15 Sep 2009 10:34:48 -0700 (PDT) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) 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:115364 Archived-At: diff --git a/lisp/vc-git.el b/lisp/vc-git.el index 34efc6b..917b6bc 100644 --- a/lisp/vc-git.el +++ b/lisp/vc-git.el @@ -512,7 +512,7 @@ If nil, use the value of `vc-diff-switches'. If t, use no switches." (set (make-local-variable 'log-view-message-re) (if vc-short-log "^\\(?:[*/\\| ]+ \\)?\\([0-9a-z]+\\) \\([-a-z0-9]+\\) \\(.*\\)" - "^[ */\\|]+commit *\\([0-9a-z]+\\)")) + "^[ */\\|]*commit *\\([0-9a-z]+\\)")) (set (make-local-variable 'log-view-font-lock-keywords) (if vc-short-log (append I found that hitting "n" in a *vc-change-log* buffer would simply beep at me.