From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: jbyler+emacs-lists@anon41.eml.cc Newsgroups: gmane.emacs.devel Subject: Re: New Function vc-annotate-chosen-revision - PATCH Date: Sat, 11 Sep 2004 14:46:32 -0400 Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Message-ID: <1094928392.25856.204167151@webmail.messagingengine.com> References: <1094851783.9297.204131161@webmail.messagingengine.com> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1094928421 3477 80.91.229.6 (11 Sep 2004 18:47:01 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 11 Sep 2004 18:47:01 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Sep 11 20:46:48 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1C6Ctb-0005wH-00 for ; Sat, 11 Sep 2004 20:46:48 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1C6Cz2-0000QP-KB for ged-emacs-devel@m.gmane.org; Sat, 11 Sep 2004 14:52:24 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1C6Cys-0000PD-OJ for emacs-devel@gnu.org; Sat, 11 Sep 2004 14:52:14 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1C6Cys-0000Of-3d for emacs-devel@gnu.org; Sat, 11 Sep 2004 14:52:14 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1C6Cys-0000Oc-0f for emacs-devel@gnu.org; Sat, 11 Sep 2004 14:52:14 -0400 Original-Received: from [66.111.4.30] (helo=frontend1.messagingengine.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1C6CtN-0000hs-5a for emacs-devel@gnu.org; Sat, 11 Sep 2004 14:46:33 -0400 Original-Received: from web3.messagingengine.com (web3.internal [10.202.2.212]) by frontend1.messagingengine.com (Postfix) with ESMTP id 1DBFFC15338 for ; Sat, 11 Sep 2004 14:46:32 -0400 (EDT) Original-Received: by web3.messagingengine.com (Postfix, from userid 99) id E7C047D0; Sat, 11 Sep 2004 14:46:32 -0400 (EDT) Content-Disposition: inline X-Mailer: MIME::Lite 1.5 (F2.73; T1.001; A1.62; B3.01; Q3.01) In-Reply-To: Original-To: "Emacs Devel List" X-Sasl-Enc: X11njBI+gMIWA9gPzPqeJw 1094928392 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: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:27021 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:27021 On Fri, 10 Sep 2004 17:48:24 -0400, "Stefan Monnier" said: > > * vc.el (vc-annotate-chosen-revision): New function. > > But C-u C-x v g does basically just that, no? Well, C-u C-x v g does a similar thing but in a different context: it lets you annotate a chosen revision of the file in the current buffer. My new function lets you annotate a chosen revision of the file *annotated* in the current buffer. It is meant to be analogous to vc-annotate-next-version, vc-annotate-prev-version, and vc-annotate-workfile-version - new functions added in January (I think) to allow convenient navigation in an annotation buffer. Now you can type N, P, or W in an annotate buffer to move to the Next, Previous, or Workfile version, and I wanted to be able to type V to jump to any arbitrary version. -Jesse