diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2016-01-03 16:57:12 +0000 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2016-01-03 16:57:12 +0000 |
commit | 5618a507ad2ef7d84ae0dd643f87aab41e3f24f0 (patch) | |
tree | cb82c1f715b25d030cb18eb8ec8f0f2edae693ae /lisp/align.el | |
parent | 1f680dbc860164a7e16b624ca23c21ac58af31c2 (diff) | |
download | emacs-5618a507ad2ef7d84ae0dd643f87aab41e3f24f0.tar.gz |
* lisp/align.el (align): Fix arg order in call to `align-region'
Diffstat (limited to 'lisp/align.el')
-rw-r--r-- | lisp/align.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/align.el b/lisp/align.el index a7a98c28f12..da8e51cf120 100644 --- a/lisp/align.el +++ b/lisp/align.el @@ -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)) |