Skip to content

Commit ce15736

Browse files
committed
* bdx.el (bdx-disassembly-goto-item): Read demangled name from user.
1 parent 4af2e00 commit ce15736

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bdx.el

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,9 @@ disassembled in this buffer. The current item will have the index equal
695695
to the length of `bdx-disassembly-stack'."
696696
(interactive
697697
(let ((items
698-
(mapcar (pcase-lambda (`(,item _ _)) (plist-get item :name))
698+
(mapcar (pcase-lambda (`(,item _ _))
699+
(or (plist-get item :demangled)
700+
(plist-get item :name)))
699701
(append (reverse bdx-disassembly-stack)
700702
(when bdx-disassembly-current-symbol
701703
(list

0 commit comments

Comments
 (0)