mirror of https://github.com/ventoy/Ventoy.git
Add tip message when theme file contains non-enclosed literal values. (#2166)
This commit is contained in:
parent
4f5334026e
commit
5067020a61
|
@ -734,6 +734,11 @@ read_property (struct parsebuf *p)
|
||||||
"%s:%d:%d property value invalid; "
|
"%s:%d:%d property value invalid; "
|
||||||
"enclose literal values in quotes (\")",
|
"enclose literal values in quotes (\")",
|
||||||
p->filename, p->line_num, p->col_num);
|
p->filename, p->line_num, p->col_num);
|
||||||
|
|
||||||
|
grub_printf("File: %s\nLine:%d Column:%d\n"
|
||||||
|
"property value invalid; enclose literal values in quotes (\")\n\n",
|
||||||
|
p->filename, p->line_num, p->col_num);
|
||||||
|
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue