From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Herbert Euler" Newsgroups: gmane.emacs.cc-mode.general,gmane.emacs.devel Subject: Re: Fill for // style comments in C Date: Mon, 27 Nov 2006 21:15:17 +0800 Message-ID: References: <456AB431.4020103@gmx.at> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1164633349 24551 80.91.229.2 (27 Nov 2006 13:15:49 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 27 Nov 2006 13:15:49 +0000 (UTC) Cc: rms@gnu.org, lennart.borgman.073@student.lu.se, emacs-devel@gnu.org, bug-cc-mode@gnu.org, monnier@iro.umontreal.ca, miles@gnu.org Original-X-From: cc-mode-help-bounces@lists.sourceforge.net Mon Nov 27 14:15:43 2006 Return-path: Envelope-to: sf-cc-mode-help@m.gmane.org Original-Received: from lists-outbound.sourceforge.net ([66.35.250.225]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GogKd-0005mr-GH for sf-cc-mode-help@m.gmane.org; Mon, 27 Nov 2006 14:15:35 +0100 Original-Received: from sc8-sf-list1-new.sourceforge.net (unknown [10.3.1.93]) by sc8-sf-spam2.sourceforge.net (Postfix) with ESMTP id C79931247C; Mon, 27 Nov 2006 05:15:34 -0800 (PST) Original-Received: from sc8-sf-mx2-b.sourceforge.net ([10.3.1.92] helo=mail.sourceforge.net) by sc8-sf-list1-new.sourceforge.net with esmtp (Exim 4.43) id 1GogKb-0001PK-PU for cc-mode-help@lists.sourceforge.net; Mon, 27 Nov 2006 05:15:34 -0800 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by mail.sourceforge.net with esmtps (TLSv1:AES256-SHA:256) (Exim 4.44) id 1GogKZ-0004iH-2z for cc-mode-help@lists.sourceforge.net; Mon, 27 Nov 2006 05:15:33 -0800 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by fencepost.gnu.org with esmtp (Exim 4.52) id 1GogKX-0004e0-SG for bug-cc-mode@gnu.org; Mon, 27 Nov 2006 08:15:29 -0500 Original-Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.52) id 1GogKX-0003mQ-BF for bug-cc-mode@gnu.org; Mon, 27 Nov 2006 08:15:29 -0500 Original-Received: from [65.54.246.153] (helo=bay0-omc2-s17.bay0.hotmail.com) by monty-python.gnu.org with esmtp (Exim 4.52) id 1GogKS-0003kS-3L; Mon, 27 Nov 2006 08:15:24 -0500 Original-Received: from hotmail.com ([64.4.26.12]) by bay0-omc2-s17.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830); Mon, 27 Nov 2006 05:15:23 -0800 Original-Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 27 Nov 2006 05:15:22 -0800 Original-Received: from 64.4.26.200 by by112fd.bay112.hotmail.msn.com with HTTP; Mon, 27 Nov 2006 13:15:17 GMT X-Originating-IP: [216.145.54.158] X-Originating-Email: [herberteuler@hotmail.com] X-Sender: herberteuler@hotmail.com In-Reply-To: <456AB431.4020103@gmx.at> Original-To: rudalics@gmx.at X-OriginalArrivalTime: 27 Nov 2006 13:15:22.0720 (UTC) FILETIME=[182FEE00:01C71226] X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on monty-python X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=MSGID_FROM_MTA_HEADER autolearn=failed version=3.0.4 X-Spam-Score: 0.0 (/) X-Spam-Report: Spam Filtering performed by sourceforge.net. See http://spamassassin.org/tag/ for more details. Report problems to http://sf.net/tracker/?func=add&group_id=1&atid=200001 0.0 MSGID_FROM_MTA_HEADER Message-Id was added by a relay X-BeenThere: cc-mode-help@lists.sourceforge.net X-Mailman-Version: 2.1.8 Precedence: list List-Id: "Bug reports, feature requests, and general talk about CC Mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: cc-mode-help-bounces@lists.sourceforge.net Errors-To: cc-mode-help-bounces@lists.sourceforge.net Xref: news.gmane.org gmane.emacs.cc-mode.general:4117 gmane.emacs.devel:62858 Archived-At: Yes, it works. Thank you. Regards, Guanpeng Xu >From: martin rudalics >To: Herbert Euler >CC: miles@gnu.org, monnier@iro.umontreal.ca, bug-cc-mode@gnu.org, >lennart.borgman.073@student.lu.se, rms@gnu.org, emacs-devel@gnu.org >Subject: Re: Fill for // style comments in C >Date: Mon, 27 Nov 2006 10:47:29 +0100 > > > And in c-mode, pressing M-q in between comments like this: > > > > // A real long comment that will cause the fill command in Emacs C mode > > making mistakes. > > > > will get > > > > // A real long comment that will cause the fill command in Emacs C > > mode making mistakes. > >It's because `c-fill-paragraph' calls `c-mask-paragraph' the latter >calls `fill-paragraph' and `fill-paragraph' gets it wrong since it has >`comment-end' set to " */" instead of nil. Does the attached workaround >remove the problem? >*** progmodes/cc-cmds.el Mon Nov 27 10:32:48 2006 >--- progmodes/cc-cmds.el Mon Nov 27 10:33:20 2006 >*************** >*** 3897,3903 **** > (prog1 > (save-restriction > (narrow-to-region beg end) >! (apply fun args)) > (if point-rel > ;; Restore point if it was outside the region. > (if (< point-rel 0) >--- 3897,3905 ---- > (prog1 > (save-restriction > (narrow-to-region beg end) >! (if (eq c-lit-type 'c++) >! (apply 'fill-comment-paragraph args) >! (apply fun args))) > (if point-rel > ;; Restore point if it was outside the region. > (if (< point-rel 0) _________________________________________________________________ FREE pop-up blocking with the new MSN Toolbar - get it now! http://toolbar.msn.click-url.com/go/onm00200415ave/direct/01/ ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV