]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/align.el (align): Fix arg order in call to `align-region'
authorArtur Malabarba <bruce.connor.am@gmail.com>
Sun, 3 Jan 2016 16:57:12 +0000 (16:57 +0000)
committerArtur Malabarba <bruce.connor.am@gmail.com>
Sun, 3 Jan 2016 16:57:12 +0000 (16:57 +0000)
lisp/align.el

index a7a98c28f1269e5e3a74d1e96f3fb2567cfa2ace..da8e51cf120dff872b5b98dd797f7a0569f42ea7 100644 (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))