little optimization in insert_symbol

This commit is contained in:
stefan schippers 2025-03-16 00:02:12 +01:00
parent d37c872a49
commit ed8a6dbe11
1 changed files with 1 additions and 1 deletions

View File

@ -4911,7 +4911,7 @@ proc insert_symbol_filelist {paths {maxdepth -1}} {
set err [catch {regexp $new_symbol_browser_ext $i} type]
if {!$err && $type} {
set fname [rel_sym_path $i $paths]
set fname [file tail $i]
lappend filelist $fname
lappend insert_symbol(fullpathlist) $i
}