1
0
Fork 0

Nasal: respect color argument for debug._dump_prop

This commit is contained in:
Thomas Geymayer 2014-06-21 12:04:19 +02:00
parent 717c684dad
commit 9e905228ef

View file

@ -164,7 +164,8 @@ var attributes = func(p, verbose = 1, 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);
}