From 39e2c94978b4964e662e26326c3791d33224c15f Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Wed, 1 May 2002 00:54:10 +0000 Subject: [PATCH] (align-region): Fixed the fix to align-region, because the "name" argument was appearing twice. --- lisp/align.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lisp/align.el b/lisp/align.el index 5f10d555113..e5ad98c815a 100644 --- a/lisp/align.el +++ b/lisp/align.el @@ -1417,8 +1417,7 @@ aligner would have dealt with are." (if (and symbol (symbolp symbol)) (message "Aligning `%s' (rule %d of %d) %d%%..." - (symbol-name symbol) - name rule-index rule-count + (symbol-name symbol) rule-index rule-count (/ (* (- (point) real-beg) 100) (- end-mark real-beg))) (message -- 2.39.5