From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: gustav@virtutech.com (=?iso-8859-1?q?Gustav_H=E5llberg?=) Newsgroups: gmane.emacs.bugs Subject: align-regexp broken in 21.3 Date: 31 Oct 2003 17:58:22 +0100 Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Message-ID: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso8859-1 X-Trace: sea.gmane.org 1067619715 25438 80.91.224.253 (31 Oct 2003 17:01:55 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 31 Oct 2003 17:01:55 +0000 (UTC) Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Fri Oct 31 18:01:53 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AFcem-0001Hk-01 for ; Fri, 31 Oct 2003 18:01:53 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AFcc2-00051k-8U for geb-bug-gnu-emacs@m.gmane.org; Fri, 31 Oct 2003 11:59:02 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1AFcc0-00051V-D8 for bug-gnu-emacs@gnu.org; Fri, 31 Oct 2003 11:59:00 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1AFcbU-0004ua-JU for bug-gnu-emacs@gnu.org; Fri, 31 Oct 2003 11:58:59 -0500 Original-Received: from [62.20.90.195] (helo=gorgon.vtab.com) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AFcbT-0004tJ-NE for bug-gnu-emacs@gnu.org; Fri, 31 Oct 2003 11:58:27 -0500 Original-Received: from localhost.localdomain (h131n1fls33o895.telia.com [213.66.110.131]) by gorgon.vtab.com (8.11.7/8.11.0) with ESMTP id h9VGwMJ15327; Fri, 31 Oct 2003 17:58:23 +0100 Original-To: bug-gnu-emacs@gnu.org Original-Lines: 18 X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 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: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.bugs:6071 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:6071 In GNU Emacs 21.3.1 (i686-pc-linux-gnu, X toolkit) of 2003-04-03 on localhost.localdomain configured using `configure --prefix=/usr/local/emacs/21.3 --without-toolkit-scroll-bars' There's a missing argument to a (message) call in align-region: --- align.el~ 2003-10-31 17:56:10.000000000 +0100 +++ align.el 2003-10-31 17:45:48.000000000 +0100 @@ -1417,6 +1417,7 @@ (if name (message "Aligning `%s' (rule %d of %d) %d%%..." + name rule-index rule-count (/ (* (- (point) real-beg) 100) (- end-mark real-beg))) - Gustav