webif/var/mongoose/lib/escape
hummypkg 509c98ee74 update
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@564 2a923420-c742-0410-a762-8d5b09965624
2011-12-14 13:55:58 +00:00

9 lines
119 B
Plaintext

if {[expr ! [exists -proc escape]]} {
proc escape {str} {
regsub -all -- {"} "$str" "\\\"" str
return $str
}
}