summaryrefslogtreecommitdiff
path: root/lisp/align.el
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2016-01-03 16:57:12 +0000
committerArtur Malabarba <bruce.connor.am@gmail.com>2016-01-03 16:57:12 +0000
commit5618a507ad2ef7d84ae0dd643f87aab41e3f24f0 (patch)
treecb82c1f715b25d030cb18eb8ec8f0f2edae693ae /lisp/align.el
parent1f680dbc860164a7e16b624ca23c21ac58af31c2 (diff)
downloademacs-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.el7
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))