branch: externals/dape
commit d68bfebc08312b974bba94ec3d13b4e6d4098ff5
Author: Daniel Pettersson <[email protected]>
Commit: Daniel Pettersson <[email protected]>
Workaround for thread :status nil
---
dape.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dape.el b/dape.el
index b82d6a367f..6c66c6fd40 100644
--- a/dape.el
+++ b/dape.el
@@ -1991,7 +1991,8 @@ Depth is decided by `dape--info-variables-fetch-depth'."
"%[%t%]")
(format " [%s]"
(propertize
- (plist-get thread :status)
+ (or (plist-get thread :status)
+ "unknown")
'face 'bold))
"\n")
:action (lambda (widget &rest _)