2009-06-15 Vladimir Serbinenko <phcoder@gmail.com>
Fix handling of string like \"hello\" and "a b" * script/sh/lexer.c (check_textstate): accept GRUB_PARSER_STATE_ESC
This commit is contained in:
parent
71c79a6b3b
commit
70b7f9fd57
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
2009-06-15 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
Fix handling of string like \"hello\" and "a
|
||||||
|
b"
|
||||||
|
|
||||||
|
* script/sh/lexer.c (check_textstate): accept GRUB_PARSER_STATE_ESC
|
||||||
|
(grub_script_yylex): fix parsing of quoting, escaping and newline
|
||||||
|
|
||||||
2009-06-13 Vladimir Serbinenko <phcoder@gmail.com>
|
2009-06-13 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* loader/i386/multiboot.c (grub_multiboot_get_bootdev): fix partition
|
* loader/i386/multiboot.c (grub_multiboot_get_bootdev): fix partition
|
||||||
|
|
|
@ -39,6 +39,7 @@ static int
|
||||||
check_textstate (grub_parser_state_t state)
|
check_textstate (grub_parser_state_t state)
|
||||||
{
|
{
|
||||||
return (state == GRUB_PARSER_STATE_TEXT
|
return (state == GRUB_PARSER_STATE_TEXT
|
||||||
|
|| state == GRUB_PARSER_STATE_ESC
|
||||||
|| state == GRUB_PARSER_STATE_QUOTE
|
|| state == GRUB_PARSER_STATE_QUOTE
|
||||||
|| state == GRUB_PARSER_STATE_DQUOTE);
|
|| state == GRUB_PARSER_STATE_DQUOTE);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue