1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

Remove some unused variables.

This commit is contained in:
Giuseppe Scrivano 2010-05-31 22:58:56 +02:00
parent e9e09e1cc0
commit e0c25f7a5f
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2010-05-31 Giuseppe Scrivano <gscrivano@gnu.org>
* css.l: Use option "nounput".
(YY_NO_INPUT): Add macro definition.
2010-05-31 Giuseppe Scrivano <gscrivano@gnu.org> 2010-05-31 Giuseppe Scrivano <gscrivano@gnu.org>
* html-parse.c (map_html_tags): Fix condition for closed tag. Handle * html-parse.c (map_html_tags): Fix condition for closed tag. Handle

View File

@ -1,6 +1,7 @@
%option case-insensitive %option case-insensitive
%option noyywrap %option noyywrap
%option never-interactive %option never-interactive
%option nounput
%{ %{
/* Lex source for CSS tokenizing. /* Lex source for CSS tokenizing.
@ -33,11 +34,11 @@ Corresponding Source for a non-source form of such a combination
shall include the source code for the parts of OpenSSL used as well shall include the source code for the parts of OpenSSL used as well
as that of the covered work. */ as that of the covered work. */
#define YY_NO_INPUT
#include "wget.h" #include "wget.h"
#include "css-tokens.h" #include "css-tokens.h"
/* {s}+\/\*[^*]*\*+([^/*][^*]*\*+)*\/ {unput(' '); } */
/*replace by space*/
%} %}
h [0-9a-f] h [0-9a-f]