From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: martin rudalics Newsgroups: gmane.emacs.devel Subject: Re: add-change-log-entry Date: Wed, 18 Jul 2007 16:32:47 +0200 Message-ID: <469E248F.1050604@gmx.at> References: <200707162209.30895.pogonyshev@gmx.net> <469DD72C.1080909@gmx.at> <469E1BAA.8090407@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------000901050103040604090209" X-Trace: sea.gmane.org 1184769182 28842 80.91.229.12 (18 Jul 2007 14:33:02 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 18 Jul 2007 14:33:02 +0000 (UTC) Cc: rms@gnu.org, emacs-devel@gnu.org To: Sam Steingold Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jul 18 16:33:00 2007 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 1IBAaH-0003SP-Uq for ged-emacs-devel@m.gmane.org; Wed, 18 Jul 2007 16:32:58 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IBAaG-0006pZ-UZ for ged-emacs-devel@m.gmane.org; Wed, 18 Jul 2007 10:32:56 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IBAYr-0005RC-Ix for emacs-devel@gnu.org; Wed, 18 Jul 2007 10:31:29 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IBAYq-0005Ob-1Q for emacs-devel@gnu.org; Wed, 18 Jul 2007 10:31:29 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IBAYp-0005OG-Hx for emacs-devel@gnu.org; Wed, 18 Jul 2007 10:31:27 -0400 Original-Received: from mail.gmx.net ([213.165.64.20]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1IBAYp-0003DD-1A for emacs-devel@gnu.org; Wed, 18 Jul 2007 10:31:27 -0400 Original-Received: (qmail invoked by alias); 18 Jul 2007 14:31:22 -0000 Original-Received: from N720P017.adsl.highway.telekom.at (EHLO [62.47.33.241]) [62.47.33.241] by mail.gmx.net (mp047) with SMTP; 18 Jul 2007 16:31:22 +0200 X-Authenticated: #14592706 X-Provags-ID: V01U2FsdGVkX1/A37Rz4VzAZ/rTwSE5wsK4YZHgIcR6J3uJqW3BII E22AsvFYysVLVX User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: de-DE, de, en-us, en In-Reply-To: <469E1BAA.8090407@gnu.org> X-Y-GMX-Trusted: 0 X-detected-kernel: Linux 2.6, seldom 2.4 (older, 4) 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:75071 Archived-At: This is a multi-part message in MIME format. --------------000901050103040604090209 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit > you forgot the to disable removing newline before "^T*": I didn't even care. > fix bug #[ 1607416 ]: back_trace is not initialized when it is a register > * spvw.d (back_trace): do not init to NULL at the declaration, instead... > (init_memory): init back_trace to NULL here > > M-q ===> > > fix bug #[ 1607416 ]: back_trace is not initialized when it is a > register * spvw.d (back_trace): do not init to NULL at the > declaration, instead... > (init_memory): init back_trace to NULL here > > (note "* spvw.d" in the middle of a line). This is a different issue. Please look at the attached patch and tell me whether it works and/or breaks anything else. > also, when the function (or file) list is too long, M-q should preserve > the standard ChangeLog formatting: > > * foo (bar, baz, zot): quux > > ===> > > * foo (bar, baz) > (zot); quux > > instead of > > * foo (bar, baz, > zot); quux > > (for the sake of font-lock which can fontify the former but not the latter) I could make ", " non-breakable but that wouldn't help much. Has this or a similar problem already been resolved somewhere else? We'd need a similar solution for `change-log-indent'. --------------000901050103040604090209 Content-Type: text/plain; name="add-log.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline; filename="add-log.patch" *** add-log.el Wed Jul 18 10:49:50 2007 --- add-log.el Wed Jul 18 16:18:00 2007 *************** *** 732,738 **** (interactive "P") (let ((end (progn (forward-paragraph) (point))) (beg (progn (backward-paragraph) (point))) ! (paragraph-start (concat paragraph-start "\\|\\s *\\s("))) (fill-region beg end justify) t)) =0C --- 732,739 ---- (interactive "P") (let ((end (progn (forward-paragraph) (point))) (beg (progn (backward-paragraph) (point))) ! (paragraph-start (concat paragraph-start "\\|\\s *\\s(")) ! (paragraph-separate (concat paragraph-separate "\\|\\s *\\*"))) (fill-region beg end justify) t)) =0C --------------000901050103040604090209 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-devel mailing list Emacs-devel@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-devel --------------000901050103040604090209--