Fix switched not/null in melpazoid-check-misc

This commit is contained in:
Leo Gaskin 2020-06-15 01:44:49 +02:00 committed by GitHub
parent 6c2792c0c7
commit b3af1685bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -194,8 +194,8 @@ a Docker container, e.g. kellyk/emacs does not include the .el files."
(melpazoid-misc "(user-error (format" "No `format` required; user-errors are already f-strings")
(melpazoid-misc "(message (format" "No `format` required; messages are already f-strings")
(melpazoid-misc "^ ;[^;]" "Single-line comments should (usually) begin with `;;`")
(melpazoid-misc "(unless (null " "Consider `when ...` instead of `unless (not ...)`")
(melpazoid-misc "(unless (not " "Consider `when ...` instead of `unless (null ...)`")
(melpazoid-misc "(unless (not " "Consider `when ...` instead of `unless (not ...)`")
(melpazoid-misc "(unless (null " "Consider `when ...` instead of `unless (null ...)`")
(melpazoid-misc "(when (not " "Consider `unless ...` instead of `when (not ...)`")
(melpazoid-misc "(when (null " "Consider `unless ...` instead of `when (null ...)`")
(melpazoid-misc "http://" "Prefer `https` over `http` (if possible)" nil t)