From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Werner LEMBERG Newsgroups: gmane.emacs.devel Subject: Re: ChangeLog fontifications Date: Thu, 13 May 2004 23:37:55 +0200 (CEST) Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <20040513.233755.258207743.wl@gnu.org> References: <200405132050.00109.bruno@clisp.org> <871xloxezs.fsf@wesley.springies.com> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1084484731 7676 80.91.224.253 (13 May 2004 21:45:31 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 13 May 2004 21:45:31 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Thu May 13 23:45:20 2004 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BOO11-0002Tn-00 for ; Thu, 13 May 2004 23:45:19 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1BOO11-0001ix-00 for ; Thu, 13 May 2004 23:45:19 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BONyA-0005f0-0m for emacs-devel@quimby.gnus.org; Thu, 13 May 2004 17:42:22 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.34) id 1BONy0-0005dO-49 for emacs-devel@gnu.org; Thu, 13 May 2004 17:42:12 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.34) id 1BONxU-0005Y8-BW for emacs-devel@gnu.org; Thu, 13 May 2004 17:42:11 -0400 Original-Received: from [212.227.126.188] (helo=moutng.kundenserver.de) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BONxU-0005Xl-0f for emacs-devel@gnu.org; Thu, 13 May 2004 17:41:40 -0400 Original-Received: from [212.227.126.206] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1BONxR-0002eT-00; Thu, 13 May 2004 23:41:37 +0200 Original-Received: from [80.129.82.196] (helo=orion.univie.ac.at) by mrelayng.kundenserver.de with asmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168) (Exim 3.35 #1) id 1BONxR-0007CR-00; Thu, 13 May 2004 23:41:37 +0200 Original-Received: from localhost (localhost [127.0.0.1]) by orion.univie.ac.at (8.11.6/8.11.6/SuSE Linux 0.5) with ESMTP id i4DLbt425295; Thu, 13 May 2004 23:37:55 +0200 Original-To: ats@acm.org In-Reply-To: <871xloxezs.fsf@wesley.springies.com> X-Mailer: Mew version 4.0.65 on Emacs 21.3.50.1 / Mule 5.0 (SAKAKI) X-Provags-ID: kundenserver.de abuse@kundenserver.de auth:2dc398bc694a1e60948148ba0a42c0da X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:23355 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:23355 > GNU coding standards say otherwise: > > http://www.gnu.org/prep/standards_42.html#SEC42 > > Break long lists of function names by closing continued lines with > `)', rather than `,', and opening the continuation with `(' as in > this example: > > * keyboard.c (menu_bar_items, tool_bar_items) > (Fexecute_extended_command): Deal with `keymap' property. Well, this is completely crazy in my eyes. Either this: * keyboard.c (menu_bar_items) (tool_bar_items) (Fexecute_extended_command): Deal with `keymap' property. or this: * keyboard.c (menu_bar_items, tool_bar_items, Fexecute_extended_command): Deal with `keymap' property. but not something inbetween! > Emacs gets it right, but it's not surprising that it isn't > technically enforced on projects with large numbers of non-emacs > contributers. This ChangeLog style is a typographic nightmare IMHO. What on earth was the reason to invent such a convention? Werner