mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-25 10:47:00 +00:00
* lisp/align.el (align): Fix arg order in call to `align-region'
This commit is contained in:
parent
1f680dbc86
commit
5618a507ad
@ -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…
Reference in New Issue
Block a user