From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: martin rudalics Newsgroups: gmane.emacs.bugs Subject: Re: Not enough number of arguments for format string in call to (message ...) in in align.el. Date: Wed, 17 Oct 2007 09:33:44 +0200 Message-ID: <4715BAD8.9030103@gmx.at> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1192606437 6554 80.91.229.12 (17 Oct 2007 07:33:57 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 17 Oct 2007 07:33:57 +0000 (UTC) Cc: bug-gnu-emacs@gnu.org To: Robert Swan Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Wed Oct 17 09:33:57 2007 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Ii3Pg-0000Ed-V7 for geb-bug-gnu-emacs@m.gmane.org; Wed, 17 Oct 2007 09:33:57 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ii3PX-0006Tu-Jl for geb-bug-gnu-emacs@m.gmane.org; Wed, 17 Oct 2007 03:33:47 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Ii3PV-0006Rr-Vc for bug-gnu-emacs@gnu.org; Wed, 17 Oct 2007 03:33:46 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Ii3PU-0006RY-FY for bug-gnu-emacs@gnu.org; Wed, 17 Oct 2007 03:33:45 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ii3PU-0006RV-CP for bug-gnu-emacs@gnu.org; Wed, 17 Oct 2007 03:33:44 -0400 Original-Received: from mail.gmx.net ([213.165.64.20]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1Ii3PT-0002Iu-Sc for bug-gnu-emacs@gnu.org; Wed, 17 Oct 2007 03:33:44 -0400 Original-Received: (qmail invoked by alias); 17 Oct 2007 07:33:41 -0000 Original-Received: from N911P015.adsl.highway.telekom.at (EHLO [62.47.57.207]) [62.47.57.207] by mail.gmx.net (mp035) with SMTP; 17 Oct 2007 09:33:41 +0200 X-Authenticated: #14592706 X-Provags-ID: V01U2FsdGVkX1+WzLsOeKyWmL1XbCVg1KndA/AfJOV46rjxIm3z5x M4mVJzeQHf3ZQs User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: de-DE, de, en-us, en In-Reply-To: X-Y-GMX-Trusted: 0 X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:16769 Archived-At: > A call to align-regexp with a region large enough to trigger reporting > (> align-large-region, defaults to 10000) results in a call to > (message "Aligning `%s' ..." ) but the argument to %s is missing. Thanks for the report. This should have been fixed in Emacs 22. Emacs 21.4 had (message "Aligning `%s' (rule %d of %d) %d%%..." rule-index rule-count (/ (* (- (point) real-beg) 100) (- end-mark real-beg))) Emacs 22.1 has (message "Aligning `%s' (rule %d of %d) %d%%..." (symbol-name symbol) rule-index rule-count (/ (* (- (point) real-beg) 100) (- end-mark real-beg))) here. Could you try to upgrade?