From unknown Tue Aug 19 14:23:01 2025 X-Loop: owner@emacsbugs.donarmstrong.com Subject: bug#4423: [PATCH] lisp/vc-dispatcher.el: at the end of vc-log-operation run vc-start-logentry-hook Reply-To: Jari Aalto , 4423@debbugs.gnu.org Resent-From: Jari Aalto Resent-To: bug-submit-list@lists.donarmstrong.com Resent-CC: Emacs Bugs 2Resent-Date: Sun, 13 Sep 2009 14:10:05 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-Emacs-PR-Message: report 4423 X-Emacs-PR-Package: emacs X-Emacs-PR-Keywords: Received: via spool by submit@emacsbugs.donarmstrong.com id=B.125285049925085 (code B ref -1); Sun, 13 Sep 2009 14:10:05 +0000 Received: (at submit) by emacsbugs.donarmstrong.com; 13 Sep 2009 14:01:39 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-0.2 required=4.0 tests=AWL,FOURLA,IMPRONONCABLE_2, MURPHY_DRUGS_REL8 autolearn=no version=3.2.5-bugs.debian.org_2005_01_02 Received: from emh05.mail.saunalahti.fi (emh05.mail.saunalahti.fi [62.142.5.111]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n8DE1blX025082 for ; Sun, 13 Sep 2009 07:01:38 -0700 Received: from saunalahti-vams (vs3-12.mail.saunalahti.fi [62.142.5.96]) by emh05-2.mail.saunalahti.fi (Postfix) with SMTP id 4830C8BCD8 for ; Sun, 13 Sep 2009 17:01:34 +0300 (EEST) Received: from emh01.mail.saunalahti.fi ([62.142.5.107]) by vs3-12.mail.saunalahti.fi ([62.142.5.96]) with SMTP (gateway) id A049D33ACDE; Sun, 13 Sep 2009 17:01:34 +0300 Received: from picasso.cante.net (a91-155-187-216.elisa-laajakaista.fi [91.155.187.216]) by emh01.mail.saunalahti.fi (Postfix) with ESMTP id 35F04403E for ; Sun, 13 Sep 2009 17:01:28 +0300 (EEST) Received: from [192.168.1.7] (helo=jondo.cante.net) by picasso.cante.net with esmtp (Exim 4.69) (envelope-from ) id 1Mmpdv-00051L-7Q for submit@emacsbugs.donarmstrong.com; Sun, 13 Sep 2009 17:01:27 +0300 Received: from jaalto by jondo.cante.net with local (Exim 4.69) (envelope-from ) id 1Mmpdw-0004F0-9O for submit@emacsbugs.donarmstrong.com; Sun, 13 Sep 2009 17:01:28 +0300 From: Jari Aalto To: Emacs bug BTS Date: Sun, 13 Sep 2009 17:01:28 +0300 Message-ID: <87vdjnlz9j.fsf@jondo.cante.net> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-SA-Exim-Connect-IP: 192.168.1.7 X-SA-Exim-Mail-From: jari.aalto@cante.net X-SA-Exim-Scanned: No (on picasso.cante.net); SAEximRunCond expanded to false X-Antivirus: VAMS --=-=-= This new hook allows users to set up the initial contents of *VC-Log* buffer. 2009-09-13 Jari Aalto * vc-dispatcher.el (vc-start-logentry-hook): New user variable. (vc-start-logentry): run `vc-start-logentry-hook' at end. --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-lisp-vc-dispatcher.el-at-end-of-vc-log-operation-run.patch >From 623988d6819a83f897c218db8a637fc505afd1b6 Mon Sep 17 00:00:00 2001 From: Jari Aalto Date: Sun, 13 Sep 2009 16:56:51 +0300 Subject: [PATCH] lisp/vc-dispatcher.el: at end of vc-log-operation run vc-start-logentry-hook Signed-off-by: Jari Aalto --- lisp/vc-dispatcher.el | 14 ++++++++++++-- 1 files changed, 12 insertions(+), 2 deletions(-) diff --git a/lisp/vc-dispatcher.el b/lisp/vc-dispatcher.el index a209e13..4282e52 100644 --- a/lisp/vc-dispatcher.el +++ b/lisp/vc-dispatcher.el @@ -136,6 +136,13 @@ preserve the setting." :type 'boolean :group 'vc) +(defcustom vc-start-logentry-hook nil + "Normal hook (list of functions) run after `vc-start-logentry'. +See `run-hooks'." + :type 'hook + :group 'vc + :version "23.2") + ;; Variables the user doesn't need to know about. (defvar vc-log-operation nil) @@ -541,7 +548,9 @@ INITIAL-CONTENTS is nil, do action immediately as if the user had entered COMMENT. If COMMENT is t, also do action immediately with an empty comment. Remember the file's buffer in `vc-parent-buffer' \(current one if no file). AFTER-HOOK specifies the local value -for `vc-log-after-operation-hook'." +for `vc-log-after-operation-hook'. + +At the end, runs the normal hook `vc-start-logentry-hook'." (let ((parent (if (vc-dispatcher-browsing) ;; If we are called from a directory browser, the parent buffer is @@ -567,7 +576,8 @@ for `vc-log-after-operation-hook'." (when (stringp comment) (insert comment))) (if (or (not comment) initial-contents) (message "%s Type C-c C-c when done" msg) - (vc-finish-logentry (eq comment t))))) + (vc-finish-logentry (eq comment t))) + (run-hooks 'vc-start-logentry-hook))) (declare-function vc-dir-move-to-goal-column "vc-dir" ()) -- 1.6.3.3 --=-=-=-- From jari.aalto@cante.net Sun Sep 13 07:22:34 2009 Received: (at control) by emacsbugs.donarmstrong.com; 13 Sep 2009 14:22:34 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-1.7 required=4.0 tests=AWL,MURPHY_DRUGS_REL8, VALID_BTS_CONTROL autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from emh05.mail.saunalahti.fi (emh05.mail.saunalahti.fi [62.142.5.111]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n8DEMXIq029705 for ; Sun, 13 Sep 2009 07:22:34 -0700 Received: from saunalahti-vams (vs3-10.mail.saunalahti.fi [62.142.5.94]) by emh05-2.mail.saunalahti.fi (Postfix) with SMTP id 76EDD8BDF5 for ; Sun, 13 Sep 2009 17:22:32 +0300 (EEST) Received: from emh07.mail.saunalahti.fi ([62.142.5.117]) by vs3-10.mail.saunalahti.fi ([62.142.5.94]) with SMTP (gateway) id A068D673EDB; Sun, 13 Sep 2009 17:22:32 +0300 Received: from jondo.cante.net (a91-155-187-216.elisa-laajakaista.fi [91.155.187.216]) by emh07.mail.saunalahti.fi (Postfix) with ESMTP id 590F51C638E for ; Sun, 13 Sep 2009 17:22:30 +0300 (EEST) To: control@debbugs.gnu.org Subject: Bug#4423 change of tags / patch Mail-Copies-To: poster X-Bug-User-Agent: Emacs 23.1.1 and tinydebian.el 2009.0812.1741 From: Jari Aalto Date: Sun, 13 Sep 2009 17:22:30 +0300 Message-ID: <87iqfmncux.fsf@jondo.cante.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Antivirus: VAMS tags 4423 + patch thanks From jari.aalto@cante.net Sun Sep 13 07:25:21 2009 Received: (at control) by emacsbugs.donarmstrong.com; 13 Sep 2009 14:25:22 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-1.7 required=4.0 tests=AWL,VALID_BTS_CONTROL autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from emh01.mail.saunalahti.fi (emh01.mail.saunalahti.fi [62.142.5.107]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n8DEPJYZ030095 for ; Sun, 13 Sep 2009 07:25:21 -0700 Received: from saunalahti-vams (vs3-12.mail.saunalahti.fi [62.142.5.96]) by emh01-2.mail.saunalahti.fi (Postfix) with SMTP id 0399B8C32E for ; Sun, 13 Sep 2009 17:25:19 +0300 (EEST) Received: from emh07.mail.saunalahti.fi ([62.142.5.117]) by vs3-12.mail.saunalahti.fi ([62.142.5.96]) with SMTP (gateway) id A05961AC67A; Sun, 13 Sep 2009 17:25:18 +0300 Received: from jondo.cante.net (a91-155-187-216.elisa-laajakaista.fi [91.155.187.216]) by emh07.mail.saunalahti.fi (Postfix) with ESMTP id D0AC91C638A for ; Sun, 13 Sep 2009 17:25:17 +0300 (EEST) To: control@debbugs.gnu.org Subject: Bug#4423 Change of severity / wishlist Mail-Copies-To: poster X-Bug-User-Agent: Emacs 23.1.1 and tinydebian.el 2009.0812.1741 From: Jari Aalto Date: Sun, 13 Sep 2009 17:25:17 +0300 Message-ID: <87fxaqncqa.fsf@jondo.cante.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Antivirus: VAMS severity 4423 wishlist thanks From unknown Tue Aug 19 14:23:01 2025 X-Loop: owner@emacsbugs.donarmstrong.com Subject: bug#4423: [PATCH] lisp/vc-dispatcher.el: at the end of vc-log-operation run vc-start-logentry-hook Reply-To: Stefan Monnier , 4423@debbugs.gnu.org Resent-From: Stefan Monnier Resent-To: bug-submit-list@lists.donarmstrong.com Resent-CC: Emacs Bugs 2Resent-Date: Mon, 14 Sep 2009 01:35:04 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-Emacs-PR-Message: followup 4423 X-Emacs-PR-Package: emacs X-Emacs-PR-Keywords: patch Received: via spool by 4423-submit@emacsbugs.donarmstrong.com id=B4423.125289172722932 (code B ref 4423); Mon, 14 Sep 2009 01:35:04 +0000 Received: (at 4423) by emacsbugs.donarmstrong.com; 14 Sep 2009 01:28:47 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-2.8 required=4.0 tests=AWL,HAS_BUG_NUMBER, MURPHY_DRUGS_REL8 autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from ironport2-out.pppoe.ca (ironport2-out.pppoe.ca [206.248.154.183] (may be forged)) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n8E1SjZO022919 for <4423@emacsbugs.donarmstrong.com>; Sun, 13 Sep 2009 18:28:47 -0700 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AlkFADo5rUpFpZBe/2dsb2JhbACBU9d1hBgFh3Q X-IronPort-AV: E=Sophos;i="4.44,380,1249272000"; d="scan'208";a="45632796" Received: from 69-165-144-94.dsl.teksavvy.com (HELO pastel.home) ([69.165.144.94]) by ironport2-out.pppoe.ca with ESMTP; 13 Sep 2009 21:27:01 -0400 Received: by pastel.home (Postfix, from userid 20848) id BAB5E8356; Sun, 13 Sep 2009 21:28:38 -0400 (EDT) From: Stefan Monnier To: Jari Aalto Cc: 4423@debbugs.gnu.org Message-ID: References: <87vdjnlz9j.fsf@jondo.cante.net> Date: Sun, 13 Sep 2009 21:28:38 -0400 In-Reply-To: <87vdjnlz9j.fsf@jondo.cante.net> (Jari Aalto's message of "Sun, 13 Sep 2009 17:01:28 +0300") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii > This new hook allows users to set up the initial contents of > *VC-Log* buffer. > 2009-09-13 Jari Aalto > * vc-dispatcher.el (vc-start-logentry-hook): New user variable. > (vc-start-logentry): run `vc-start-logentry-hook' at end. Why not use log-edit-hook or log-edit-mode-hook? Stefan From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 27 13:37:24 2010 Received: (at control) by debbugs.gnu.org; 27 Jan 2010 18:37:24 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NaClW-0005NT-Lw for submit@debbugs.gnu.org; Wed, 27 Jan 2010 13:37:22 -0500 Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NaClV-0005NO-3E for control@debbugs.gnu.org; Wed, 27 Jan 2010 13:37:21 -0500 Received: from rgm by fencepost.gnu.org with local (Exim 4.69) (envelope-from ) id 1NaClQ-0000S9-P4; Wed, 27 Jan 2010 13:37:16 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <19296.34780.726036.503591@fencepost.gnu.org> Date: Wed, 27 Jan 2010 13:37:16 -0500 From: Glenn Morris To: control Subject: control X-Attribution: GM X-Mailer: VM (www.wonderworks.com/vm), GNU Emacs (www.gnu.org/software/emacs) X-Hue: green X-Ran: fgOeiHht+:?Q|KHRa[ek;BxcHFbK!Se)$i^;j{sg]%&!FOYS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -4.9 (----) tags 4423 moreinfo reassign 4449 emacs,ns From unknown Tue Aug 19 14:23:01 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.427 (Entity 5.427) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Jari Aalto Subject: bug#4423: closed (Re: bug#4423: [PATCH] lisp/vc-dispatcher.el: at the end of vc-log-operation run vc-start-logentry-hook) Message-ID: References: <87vdjnlz9j.fsf@jondo.cante.net> X-Gnu-PR-Message: they-closed 4423 X-Gnu-PR-Package: emacs X-Gnu-PR-Keywords: wontfix patch Reply-To: 4423@debbugs.gnu.org Date: Tue, 12 Jul 2011 07:44:01 +0000 Content-Type: multipart/mixed; boundary="----------=_1310456641-766-1" This is a multi-part message in MIME format... ------------=_1310456641-766-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #4423: [PATCH] lisp/vc-dispatcher.el: at the end of vc-log-operation run vc= -start-logentry-hook which was filed against the emacs package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 4423@debbugs.gnu.org. --=20 4423: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D4423 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1310456641-766-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 4423-done) by debbugs.gnu.org; 12 Jul 2011 07:43:57 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QgXdM-0000By-Iz for submit@debbugs.gnu.org; Tue, 12 Jul 2011 03:43:57 -0400 Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QgXdK-0000Bl-Aj for 4423-done@debbugs.gnu.org; Tue, 12 Jul 2011 03:43:55 -0400 Received: from localhost ([127.0.0.1]:54438) by fencepost.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QgXdC-000811-Lm; Tue, 12 Jul 2011 03:43:46 -0400 From: Glenn Morris To: 4423-done@debbugs.gnu.org Subject: Re: bug#4423: [PATCH] lisp/vc-dispatcher.el: at the end of vc-log-operation run vc-start-logentry-hook References: <87vdjnlz9j.fsf@jondo.cante.net> X-Spook: cypherpunk ASDIC Cocaine Bruxelles morse bluebird Arnett X-Ran: Zum>kft_EIxGgnOpl=hXkTW|lp[c-q#'cigdrqS*fdg[E\T/6_BPc5g X-Hue: white X-Attribution: GM Date: Tue, 12 Jul 2011 03:43:45 -0400 In-Reply-To: (Stefan Monnier's message of "Sun, 13 Sep 2009 21:28:38 -0400") Message-ID: User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -6.4 (------) X-Debbugs-Envelope-To: 4423-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.4 (------) Stefan Monnier wrote: >> This new hook allows users to set up the initial contents of >> *VC-Log* buffer. [...] > Why not use log-edit-hook or log-edit-mode-hook? Indeed those hooks seem to make this proposed addition unecessary. ------------=_1310456641-766-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by emacsbugs.donarmstrong.com; 13 Sep 2009 14:01:39 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-0.2 required=4.0 tests=AWL,FOURLA,IMPRONONCABLE_2, MURPHY_DRUGS_REL8 autolearn=no version=3.2.5-bugs.debian.org_2005_01_02 Received: from emh05.mail.saunalahti.fi (emh05.mail.saunalahti.fi [62.142.5.111]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n8DE1blX025082 for ; Sun, 13 Sep 2009 07:01:38 -0700 Received: from saunalahti-vams (vs3-12.mail.saunalahti.fi [62.142.5.96]) by emh05-2.mail.saunalahti.fi (Postfix) with SMTP id 4830C8BCD8 for ; Sun, 13 Sep 2009 17:01:34 +0300 (EEST) Received: from emh01.mail.saunalahti.fi ([62.142.5.107]) by vs3-12.mail.saunalahti.fi ([62.142.5.96]) with SMTP (gateway) id A049D33ACDE; Sun, 13 Sep 2009 17:01:34 +0300 Received: from picasso.cante.net (a91-155-187-216.elisa-laajakaista.fi [91.155.187.216]) by emh01.mail.saunalahti.fi (Postfix) with ESMTP id 35F04403E for ; Sun, 13 Sep 2009 17:01:28 +0300 (EEST) Received: from [192.168.1.7] (helo=jondo.cante.net) by picasso.cante.net with esmtp (Exim 4.69) (envelope-from ) id 1Mmpdv-00051L-7Q for submit@emacsbugs.donarmstrong.com; Sun, 13 Sep 2009 17:01:27 +0300 Received: from jaalto by jondo.cante.net with local (Exim 4.69) (envelope-from ) id 1Mmpdw-0004F0-9O for submit@emacsbugs.donarmstrong.com; Sun, 13 Sep 2009 17:01:28 +0300 From: Jari Aalto To: Emacs bug BTS Subject: [PATCH] lisp/vc-dispatcher.el: at the end of vc-log-operation run vc-start-logentry-hook Date: Sun, 13 Sep 2009 17:01:28 +0300 Message-ID: <87vdjnlz9j.fsf@jondo.cante.net> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-SA-Exim-Connect-IP: 192.168.1.7 X-SA-Exim-Mail-From: jari.aalto@cante.net X-SA-Exim-Scanned: No (on picasso.cante.net); SAEximRunCond expanded to false X-Antivirus: VAMS --=-=-= This new hook allows users to set up the initial contents of *VC-Log* buffer. 2009-09-13 Jari Aalto * vc-dispatcher.el (vc-start-logentry-hook): New user variable. (vc-start-logentry): run `vc-start-logentry-hook' at end. --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-lisp-vc-dispatcher.el-at-end-of-vc-log-operation-run.patch >From 623988d6819a83f897c218db8a637fc505afd1b6 Mon Sep 17 00:00:00 2001 From: Jari Aalto Date: Sun, 13 Sep 2009 16:56:51 +0300 Subject: [PATCH] lisp/vc-dispatcher.el: at end of vc-log-operation run vc-start-logentry-hook Signed-off-by: Jari Aalto --- lisp/vc-dispatcher.el | 14 ++++++++++++-- 1 files changed, 12 insertions(+), 2 deletions(-) diff --git a/lisp/vc-dispatcher.el b/lisp/vc-dispatcher.el index a209e13..4282e52 100644 --- a/lisp/vc-dispatcher.el +++ b/lisp/vc-dispatcher.el @@ -136,6 +136,13 @@ preserve the setting." :type 'boolean :group 'vc) +(defcustom vc-start-logentry-hook nil + "Normal hook (list of functions) run after `vc-start-logentry'. +See `run-hooks'." + :type 'hook + :group 'vc + :version "23.2") + ;; Variables the user doesn't need to know about. (defvar vc-log-operation nil) @@ -541,7 +548,9 @@ INITIAL-CONTENTS is nil, do action immediately as if the user had entered COMMENT. If COMMENT is t, also do action immediately with an empty comment. Remember the file's buffer in `vc-parent-buffer' \(current one if no file). AFTER-HOOK specifies the local value -for `vc-log-after-operation-hook'." +for `vc-log-after-operation-hook'. + +At the end, runs the normal hook `vc-start-logentry-hook'." (let ((parent (if (vc-dispatcher-browsing) ;; If we are called from a directory browser, the parent buffer is @@ -567,7 +576,8 @@ for `vc-log-after-operation-hook'." (when (stringp comment) (insert comment))) (if (or (not comment) initial-contents) (message "%s Type C-c C-c when done" msg) - (vc-finish-logentry (eq comment t))))) + (vc-finish-logentry (eq comment t))) + (run-hooks 'vc-start-logentry-hook))) (declare-function vc-dir-move-to-goal-column "vc-dir" ()) -- 1.6.3.3 --=-=-=-- ------------=_1310456641-766-1--