From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Uwe Brauer Newsgroups: gmane.emacs.devel Subject: Re: vc-next-action RCS vs hg: copies the entry of ChangeLog Date: Sun, 18 Oct 2015 16:06:18 +0300 Message-ID: <871tcsl41h.fsf@mat.ucm.es> References: <87wpuohbj8.fsf@mat.ucm.es> <561F85F2.2030002@yandex.ru> <87fv18oe04.fsf@mat.ucm.es> <56235135.3060503@yandex.ru> <877fmkoa6v.fsf@mat.ucm.es> <56236B6F.8070401@yandex.ru> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1445173606 19042 80.91.229.3 (18 Oct 2015 13:06:46 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 18 Oct 2015 13:06:46 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Oct 18 15:06:36 2015 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ZnnfX-0001mZ-Nz for ged-emacs-devel@m.gmane.org; Sun, 18 Oct 2015 15:06:35 +0200 Original-Received: from localhost ([::1]:33937 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZnnfW-00012R-VL for ged-emacs-devel@m.gmane.org; Sun, 18 Oct 2015 09:06:34 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:53308) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZnnfT-00012K-Dw for emacs-devel@gnu.org; Sun, 18 Oct 2015 09:06:32 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZnnfP-0007XK-A1 for emacs-devel@gnu.org; Sun, 18 Oct 2015 09:06:31 -0400 Original-Received: from plane.gmane.org ([80.91.229.3]:43478) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZnnfP-0007XB-3Q for emacs-devel@gnu.org; Sun, 18 Oct 2015 09:06:27 -0400 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZnnfM-0001cC-F9 for emacs-devel@gnu.org; Sun, 18 Oct 2015 15:06:25 +0200 Original-Received: from 192.115.67.55 ([192.115.67.55]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 18 Oct 2015 15:06:24 +0200 Original-Received: from oub by 192.115.67.55 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 18 Oct 2015 15:06:24 +0200 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: emacs-devel@gnu.org Original-Lines: 29 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 192.115.67.55 Mail-Copies-To: never User-Agent: Gnus/5.13001 (Ma Gnus v0.10) Emacs/25.0.50 (gnu/linux) Cancel-Lock: sha1:v5FxU93DoNUvxi7hzQ8L08Ehze8= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 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 Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:191942 Archived-At: > On 10/18/2015 11:25 AM, Uwe Brauer wrote: > Turns out, the problem is that vc-hg-print-log doesn't display > multiline messages, just the first line. > Mercurial is weird. > The easiest way to display them is to pass -v to 'hg log'. However, > that will also display the list of files touched by the commit, which > can be long, and it's pretty annoying. > To avoid that, https://bz.mercurial-scm.org/show_bug.cgi?id=688 > suggests using the --template argument, to indicate exactly what to > output. > If someone were to look into it and tell us what template format > corresponds to "current output plus long commit message", that would > be helpful. Preferably, both for "short" and "long" types of output > (see vc-hg-print-log). Hi it seems that hg log --template "commit {node}\nAuthor : {author}\nDate: {date|rfc822date}\n\n{desc}\n\n{nofiles}\n" Does more or less what git log does