branch: elpa/tp
commit 511fa6738061b33c78cf2dbb6dc39ba8e1d82e75
Merge: cce2dfe0ec 8027fd2cc6
Author: marty hiatt <[email protected]>
Commit: marty hiatt <[email protected]>
Merge branch 'transient-0.10' into dev
---
tp.el | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/tp.el b/tp.el
index 0eb9231de9..b351e3258c 100644
--- a/tp.el
+++ b/tp.el
@@ -269,7 +269,8 @@ Values to send will not be JSON booleans, but plain
strings.")
(cl-defmethod transient-init-value ((obj tp-option))
"Initialize the value of OBJ."
- (let* ((prefix-val (oref transient--prefix value)))
+ (let* ((prefix-val (transient-get-value)))
+ ;; (oref transient--prefix value)))
(oset obj value
(tp-get-server-val obj prefix-val))))
@@ -385,7 +386,8 @@ We add the current value as initial input."
The format of the value is a transient pair as a string, ie \"key=val\".
Nil values will also match the empty string.
OBJ is the object whose args are being checked."
- (let* ((data (oref transient--prefix value))
+ (let* ((data (transient-get-value))
+ ;; (oref transient--prefix value))
(server-val (tp-get-server-val obj data))
(server-str (if (and server-val
(symbolp server-val))