More Elisp linting
This should cover most of the remaining linting errors. After this, I expect fewer than ten linting errors.
This commit is contained in:
parent
a638e15c0d
commit
fb5ec068dd
47 changed files with 1049 additions and 989 deletions
|
|
@ -60,11 +60,11 @@
|
|||
|
||||
(defun maybe-nils? (&rest xs)
|
||||
"Return t if all XS are nil."
|
||||
(list/all? #'maybe-nil? xs))
|
||||
(list-all? #'maybe-nil? xs))
|
||||
|
||||
(defun maybe-somes? (&rest xs)
|
||||
"Return t if all XS are non-nil."
|
||||
(list/all? #'maybe-some? xs))
|
||||
(list-all? #'maybe-some? xs))
|
||||
|
||||
(defun maybe-default (default x)
|
||||
"Return DEFAULT when X is nil."
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue