1
0
forked from aniani/vim

runtime(termdebug): using wrong type for PlaceSign()

Make sure to convert them to numbers.

fixes: #14994
closes: #15015

Signed-off-by: shane.xb.qian <shane.qian@foxmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
shane.xb.qian
2024-06-16 08:35:57 +02:00
committed by Christian Brabandt
parent 0d4d23dac0
commit f127dce188

View File

@@ -1949,7 +1949,7 @@ def BufRead()
for [id, entries] in items(breakpoints)
for [subid, entry] in items(entries)
if entry['fname'] == fname
PlaceSign(id, subid, entry)
PlaceSign(str2nr(id), str2nr(subid), entry)
endif
endfor
endfor