* test/manual/indent/tcl.tcl: Add string interpolation case

This commit is contained in:
Stefan Monnier 2020-11-20 16:54:06 -05:00
parent 2ba2e7217f
commit ac98bcc906

View file

@ -20,3 +20,7 @@ proc foo3 {} {
puts a""b"; # And that won't either!
puts "a""b"; # But this will!
}
# FIXME: The [..] interpolation within "..." strings is not properly
# handled by the current `syntax-propertize-function`!
set a "Testing: [split "192.168.1.1/24" "/"] address";