forked from hummypkg/webif
2c62699f00
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@1723 2a923420-c742-0410-a762-8d5b09965624
11 lines
142 B
Plaintext
11 lines
142 B
Plaintext
|
|
proc {dict merge} {dict args} {
|
|
foreach d $args {
|
|
foreach k [dict keys $d] {
|
|
dict set dict $k [dict get $d $k]
|
|
}
|
|
}
|
|
return $dict
|
|
}
|
|
|