Silence unused retval warnings from package!

This commit is contained in:
Henrik Lissner 2019-12-26 02:44:12 -05:00
parent c1ff03ebed
commit 09b49ee83a
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -350,7 +350,8 @@ elsewhere."
(error-message-string e))))) (error-message-string e)))))
;; This is the only side-effect of this macro! ;; This is the only side-effect of this macro!
(setf (alist-get name doom-packages) plist) (setf (alist-get name doom-packages) plist)
(not (plist-get plist :disable)))) (with-no-warnings
(not (plist-get plist :disable)))))
(defmacro disable-packages! (&rest packages) (defmacro disable-packages! (&rest packages)
"A convenience macro for disabling packages in bulk. "A convenience macro for disabling packages in bulk.