Revision: 1965
http://svn.sv.gnu.org/viewvc/?view=rev&root=grub&revision=1965
Author: chaac
Date: 2009-02-01 09:03:15 +0000 (Sun, 01 Feb 2009)
Log Message:
-----------
2009-02-01 Vesa J?\195?\164?\195?\164skel?\195?\164inen <[email protected]>
Based on patch on bug #25318 created by Bernhard Rosenkraenzer
<[email protected]>.
* normal/parser.y (script_init): Add missing semicolon.
Ticket Links:
:-----------
http://savannah.gnu.org/bugs/?25318
Modified Paths:
--------------
trunk/grub2/ChangeLog
trunk/grub2/normal/parser.y
Modified: trunk/grub2/ChangeLog
===================================================================
--- trunk/grub2/ChangeLog 2009-01-31 09:15:43 UTC (rev 1964)
+++ trunk/grub2/ChangeLog 2009-02-01 09:03:15 UTC (rev 1965)
@@ -1,3 +1,10 @@
+2009-02-01 Vesa Jääskeläinen <[email protected]>
+
+ Based on patch on bug #25318 created by Bernhard Rosenkraenzer
+ <[email protected]>.
+
+ * normal/parser.y (script_init): Add missing semicolon.
+
2009-01-31 Colin D Bennett <[email protected]>
* normal/main.c: Add include to grub/menu_viewer.h.
Modified: trunk/grub2/normal/parser.y
===================================================================
--- trunk/grub2/normal/parser.y 2009-01-31 09:15:43 UTC (rev 1964)
+++ trunk/grub2/normal/parser.y 2009-02-01 09:03:15 UTC (rev 1965)
@@ -56,7 +56,7 @@
%%
/* It should be possible to do this in a clean way... */
-script_init: { state->err = 0} script
+script_init: { state->err = 0; } script
{
state->parsed = $2;
}