Sfoglia il codice sorgente

Add missing %{ ... %}

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@57239 15284696-431f-4ddb-bdfa-cd5b030d7da7
Glynn Clements 12 anni fa
parent
commit
6cf84f3305
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. 2 1
      lib/db/sqlp/sqlp.l

+ 2 - 1
lib/db/sqlp/sqlp.l

@@ -205,10 +205,11 @@
   ***************************************/
 %}
 "--".*$		;	/* comment */
-
+%{
  /***************************************
   * DEFAULT RULE
   ***************************************/
+%}
 .	{ yyerror("Syntax error"); }
 
 %%