* 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)
|
||||
(sec-last beg))
|
||||
(align-region beg end
|
||||
(or exclude-rules
|
||||
align-mode-exclude-rules-list
|
||||
align-exclude-rules-list) nil
|
||||
separator
|
||||
nil ; rules
|
||||
(or exclude-rules
|
||||
align-mode-exclude-rules-list
|
||||
align-exclude-rules-list)
|
||||
(function
|
||||
(lambda (b e mode)
|
||||
(when (and mode (listp mode))
|
||||
|
|
Loading…
Add table
Reference in a new issue