diff options
author | John Wiegley <johnw@newartisans.com> | 2002-05-01 00:54:10 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2002-05-01 00:54:10 +0000 |
commit | 39e2c94978b4964e662e26326c3791d33224c15f (patch) | |
tree | 78647e1d659afa0d7419053134a7efe60965cb8b /lisp/align.el | |
parent | 38c677318806cbee1d28c893d5a3f417a4453d4e (diff) | |
download | emacs-39e2c94978b4964e662e26326c3791d33224c15f.tar.gz |
(align-region): Fixed the fix to align-region, because the "name"
argument was appearing twice.
Diffstat (limited to 'lisp/align.el')
-rw-r--r-- | lisp/align.el | 3 |
1 files changed, 1 insertions, 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 |