From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.emacs.devel Subject: Re: patch for documentation about version control Date: Thu, 11 Nov 2004 19:25:49 +0100 Message-ID: References: <87vfce289d.fsf@floss.red-bean.com> <1100078556.3428.151.camel@localhost> <1100174117.3428.194.camel@localhost> Reply-To: ttn@glug.org NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1100196024 9529 80.91.229.6 (11 Nov 2004 18:00:24 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 11 Nov 2004 18:00:24 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Nov 11 19:00:13 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 1CSJEy-0004dk-00 for ; Thu, 11 Nov 2004 19:00:12 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CSJNU-0001UN-DW for ged-emacs-devel@m.gmane.org; Thu, 11 Nov 2004 13:09:00 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CSJNN-0001UD-8L for emacs-devel@gnu.org; Thu, 11 Nov 2004 13:08:53 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CSJNM-0001Tu-Kn for emacs-devel@gnu.org; Thu, 11 Nov 2004 13:08:52 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CSJNM-0001Tr-HP for emacs-devel@gnu.org; Thu, 11 Nov 2004 13:08:52 -0500 Original-Received: from [151.37.166.68] (helo=surf.glug.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CSJEk-0002gh-Eg; Thu, 11 Nov 2004 12:59:58 -0500 Original-Received: from ttn by surf.glug.org with local (Exim 3.35 #1 (Debian)) id 1CSJdl-00033j-00; Thu, 11 Nov 2004 19:25:49 +0100 Original-To: Andre Spiegel In-reply-to: <1100174117.3428.194.camel@localhost> (message from Andre Spiegel on Thu, 11 Nov 2004 12:55:17 +0100) 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: main.gmane.org gmane.emacs.devel:29755 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:29755 apparently, it is not only the parser that needs work: (defun ttn-test () (interactive) (find-file "~/tmp/ChangeLog") (sit-for 0) (call-interactively 'vc-annotate)) elp results: Function Name Call Count Elapsed Time Average Time ======================= ========== ============ ============ ttn-test 1 13.740197 13.740197 vc-rcs-annotate-command 1 12.956783 12.956783 vc-rcs-parse 1 4.92826 4.92826 the vc-rcs-* funcs take 93% and 36% of the total time, respectively. unfortunately, nothing comes to mind for `vc-rcs-annotate-command' speedup. suggestions welcome. thi