* grub-core/script/parser.y: Declare "time" as valid argument.
This commit is contained in:
parent
bae7fcc1ed
commit
bd4d051a95
2 changed files with 5 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2011-03-23 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/script/parser.y: Declare "time" as valid argument.
|
||||
|
||||
2011-03-23 Peter Jones <pjones@redhat.com>
|
||||
|
||||
Fix incorrect assert failure reporting.
|
||||
|
|
|
@ -147,6 +147,7 @@ argument : "case" { $$ = grub_script_add_arglist (state, 0, $1); }
|
|||
| "until" { $$ = grub_script_add_arglist (state, 0, $1); }
|
||||
| "while" { $$ = grub_script_add_arglist (state, 0, $1); }
|
||||
| "function" { $$ = grub_script_add_arglist (state, 0, $1); }
|
||||
| "time" { $$ = grub_script_add_arglist (state, 0, $1); }
|
||||
| word { $$ = $1; }
|
||||
;
|
||||
|
||||
|
|
Loading…
Reference in a new issue