mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-05 03:39:38 +00:00
allow customized values to be nil
This commit is contained in:
parent
9bf8264523
commit
57ec21a013
1 changed files with 2 additions and 1 deletions
|
@ -1423,7 +1423,8 @@ deferred until the prefix key sequence is pressed."
|
||||||
(value (nth 1 def))
|
(value (nth 1 def))
|
||||||
(comment (nth 2 def)))
|
(comment (nth 2 def)))
|
||||||
(when (or (not variable)
|
(when (or (not variable)
|
||||||
(not value)
|
(and (not value)
|
||||||
|
(not (eq value nil)))
|
||||||
(> (length def) 3)
|
(> (length def) 3)
|
||||||
(and comment (not (stringp comment))))
|
(and comment (not (stringp comment))))
|
||||||
(use-package-error error-msg))))))
|
(use-package-error error-msg))))))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue