From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Masatake YAMATO Newsgroups: gmane.emacs.devel Subject: Re: Some problems in `add-log-current-defun' Date: Sat, 30 Dec 2006 13:55:40 +0900 (JST) Message-ID: <20061230.135540.151586663.jet@gyve.org> References: <20061228.214151.39658002.jet@gyve.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1167454566 9524 80.91.229.12 (30 Dec 2006 04:56:06 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 30 Dec 2006 04:56:06 +0000 (UTC) Cc: herberteuler@hotmail.com, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Dec 30 05:56:03 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1H0WGI-0001Mo-HE for ged-emacs-devel@m.gmane.org; Sat, 30 Dec 2006 05:56:02 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1H0WGH-0006Wa-UA for ged-emacs-devel@m.gmane.org; Fri, 29 Dec 2006 23:56:01 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1H0WG5-0006UU-J2 for emacs-devel@gnu.org; Fri, 29 Dec 2006 23:55:49 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1H0WG1-0006Tx-JP for emacs-devel@gnu.org; Fri, 29 Dec 2006 23:55:48 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1H0WG1-0006Tu-GP for emacs-devel@gnu.org; Fri, 29 Dec 2006 23:55:45 -0500 Original-Received: from [210.130.0.20] (helo=mo01.iij4u.or.jp) by monty-python.gnu.org with esmtp (Exim 4.52) id 1H0WFz-0004RP-9Q; Fri, 29 Dec 2006 23:55:43 -0500 Original-Received: MO(mo01)id kBU4td71025369; Sat, 30 Dec 2006 13:55:39 +0900 (JST) Original-Received: from localhost (h219-110-075-154.catv01.itscom.jp [219.110.75.154]) by r-kk.iij4u.or.jp (4U-MR/r-kk) id kBU4tceI014640; Sat, 30 Dec 2006 13:55:39 +0900 (JST) Original-To: rms@gnu.org In-Reply-To: X-Mailer: Mew version 4.2.53 on Emacs 22.0.51 / Mule 5.0 (SAKAKI) 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: news.gmane.org gmane.emacs.devel:64474 Archived-At: > > void ssort(void * base, size_t n, size_t sz, CFT cmp) > > /* > > Sort the "n" elements of vector "base" into increasing order > > using the comparison function pointed to by "cmp". > > The elements are of size "sz". > > > > Shell sort (Knuth, Vol3, pg84) > > */ > > { > > /* ... */ > > } > > > > That seems like common usage -- not weird. It would be nice to handle > > that usage correctly. However, if we have never handled it in the > > past, I think it is not urgent to fix it now. > > > > Masatake YAMATO thinks that code is badly formatted. > > Masatake, why do you think so? > > Just because I have never seen such a comment style. > > > The comment looks ordinary to me. It starts with /* at the start of a > line, and ends with */ on a separate line. > > Do you mean the POSITION of the comment is unusual? Yes. A comment put between a function signature( void ssort(void * base, size_t n, size_t sz, CFT cmp) ) and its body is unusual for me. Masatake YAMATO