1
0
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:
Artur Malabarba 2016-01-03 16:57:12 +00:00
parent 1f680dbc86
commit 5618a507ad

View File

@ -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))