Nasal: respect color argument for debug._dump_prop
This commit is contained in:
parent
717c684dad
commit
9e905228ef
1 changed files with 2 additions and 1 deletions
|
@ -164,7 +164,8 @@ var attributes = func(p, verbose = 1, color=nil) {
|
||||||
|
|
||||||
|
|
||||||
var _dump_prop = func(p, color=nil) {
|
var _dump_prop = func(p, color=nil) {
|
||||||
_path(p.getPath(), color) ~ " = " ~ debug.string(p.getValue()) ~ " " ~ attributes(p);
|
_path(p.getPath(), color) ~ " = " ~ debug.string(p.getValue(), color)
|
||||||
|
~ " " ~ attributes(p, 1, color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue