mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-25 10:47:00 +00:00
* lisp/align.el (align): Simplify a lambda
This commit is contained in:
parent
5618a507ad
commit
71ea138bad
@ -893,11 +893,10 @@ on the format of these lists."
|
||||
(or exclude-rules
|
||||
align-mode-exclude-rules-list
|
||||
align-exclude-rules-list)
|
||||
(function
|
||||
(lambda (b e mode)
|
||||
(when (and mode (listp mode))
|
||||
(setq sec-first (min sec-first b)
|
||||
sec-last (max sec-last e))))))
|
||||
(lambda (b e mode)
|
||||
(when (consp mode)
|
||||
(setq sec-first (min sec-first b)
|
||||
sec-last (max sec-last e)))))
|
||||
(if (< sec-first sec-last)
|
||||
(align-region sec-first sec-last 'entire
|
||||
(or rules align-mode-rules-list align-rules-list)
|
||||
|
Loading…
Reference in New Issue
Block a user