* lisp/align.el (align): Fix arg order in call to `align-region'
This commit is contained in:
parent
1f680dbc86
commit
5618a507ad
1 changed files with 4 additions and 3 deletions
|
@ -888,10 +888,11 @@ on the format of these lists."
|
||||||
(let ((sec-first end)
|
(let ((sec-first end)
|
||||||
(sec-last beg))
|
(sec-last beg))
|
||||||
(align-region beg end
|
(align-region beg end
|
||||||
|
separator
|
||||||
|
nil ; rules
|
||||||
(or exclude-rules
|
(or exclude-rules
|
||||||
align-mode-exclude-rules-list
|
align-mode-exclude-rules-list
|
||||||
align-exclude-rules-list) nil
|
align-exclude-rules-list)
|
||||||
separator
|
|
||||||
(function
|
(function
|
||||||
(lambda (b e mode)
|
(lambda (b e mode)
|
||||||
(when (and mode (listp mode))
|
(when (and mode (listp mode))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue