remove redundant let* in bbj-sane-value
parent
03939fdca5
commit
b99c7a1f0f
|
@ -158,11 +158,9 @@ is the only thing returned (not the usermap or error field)"
|
||||||
passed to the server to check it for validity before the
|
passed to the server to check it for validity before the
|
||||||
user is allowed to continue. Will recurse until the input
|
user is allowed to continue. Will recurse until the input
|
||||||
is valid, then it is returned."
|
is valid, then it is returned."
|
||||||
(let (response value)
|
(let* ((value (read-from-minibuffer prompt))
|
||||||
(setq value (read-from-minibuffer prompt)
|
(response (bbj-request! 'db_sanity_check
|
||||||
response (bbj-request! 'db_sanity_check
|
'value value 'key key)))
|
||||||
'value value
|
|
||||||
'key key))
|
|
||||||
(if (alist-get 'bool response)
|
(if (alist-get 'bool response)
|
||||||
value
|
value
|
||||||
(message (alist-get 'description response))
|
(message (alist-get 'description response))
|
||||||
|
|
|
@ -84,11 +84,9 @@ for rejection is displayed clearly to the user and input window is restored.
|
||||||
passed to the server to check it for validity before the
|
passed to the server to check it for validity before the
|
||||||
user is allowed to continue. Will recurse until the input
|
user is allowed to continue. Will recurse until the input
|
||||||
is valid, then it is returned."
|
is valid, then it is returned."
|
||||||
(let (response value)
|
(let* ((value (read-from-minibuffer prompt))
|
||||||
(setq value (read-from-minibuffer prompt)
|
(response (bbj-request! 'db_sanity_check
|
||||||
response (bbj-request! 'db_sanity_check
|
'value value 'key key)))
|
||||||
'value value
|
|
||||||
'key key))
|
|
||||||
(if (alist-get 'bool response)
|
(if (alist-get 'bool response)
|
||||||
value
|
value
|
||||||
(message (alist-get 'description response))
|
(message (alist-get 'description response))
|
||||||
|
|
Loading…
Reference in New Issue