Minor refactor & reformatting across the board

This commit is contained in:
Henrik Lissner
2020-04-08 15:29:29 -04:00
parent 2957f5ff28
commit b78fc4eb76
27 changed files with 189 additions and 164 deletions

View File

@@ -93,7 +93,7 @@ Accepts the same arguments as `message'."
ARGS is a list of the last N arguments to pass to FUN. The result is a new
function which does the same as FUN, except that the last N arguments are fixed
at the values with which this function was called."
(declare (pure t) (side-effect-free t))
(declare (side-effect-free t))
(lambda (&rest pre-args)
(apply fn (append pre-args args))))