diff options
| author | John Wiegley | 2002-02-06 07:07:54 +0000 |
|---|---|---|
| committer | John Wiegley | 2002-02-06 07:07:54 +0000 |
| commit | f3bbc088d26b9443681adad167c5219b147723fa (patch) | |
| tree | 26972f899a438e0f64767f0144ae45273bc3feb5 | |
| parent | 7ff24607890b0212aae203b9e10cec005b207e05 (diff) | |
| download | emacs-f3bbc088d26b9443681adad167c5219b147723fa.tar.gz emacs-f3bbc088d26b9443681adad167c5219b147723fa.zip | |
(align-region): Added a missing name argument.
| -rw-r--r-- | lisp/align.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/align.el b/lisp/align.el index ad4bd039661..388c090a204 100644 --- a/lisp/align.el +++ b/lisp/align.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; align.el --- align text to a specific column, by regexp | 1 | ;;; align.el --- align text to a specific column, by regexp |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1999, 2000 Free Sofware Foundation | 3 | ;; Copyright (C) 1999, 2000, 2002 Free Sofware Foundation |
| 4 | 4 | ||
| 5 | ;; Author: John Wiegley <johnw@gnu.org> | 5 | ;; Author: John Wiegley <johnw@gnu.org> |
| 6 | ;; Keywords: convenience languages lisp | 6 | ;; Keywords: convenience languages lisp |
| @@ -1417,7 +1417,7 @@ aligner would have dealt with are." | |||
| 1417 | (if name | 1417 | (if name |
| 1418 | (message | 1418 | (message |
| 1419 | "Aligning `%s' (rule %d of %d) %d%%..." | 1419 | "Aligning `%s' (rule %d of %d) %d%%..." |
| 1420 | rule-index rule-count | 1420 | name rule-index rule-count |
| 1421 | (/ (* (- (point) real-beg) 100) | 1421 | (/ (* (- (point) real-beg) 100) |
| 1422 | (- end-mark real-beg))) | 1422 | (- end-mark real-beg))) |
| 1423 | (message | 1423 | (message |