diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2019-01-08 02:08:29 +0000 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2019-01-08 02:08:29 +0000 |
commit | af797b7574b6332e1722ef136e78aa734cba91b0 (patch) | |
tree | 8fb7d6a21779944429ae166e980ecabaa6930a42 /mixlib | |
parent | 7b999defb449282f9f570a90ea3ad84c2fd5da2e (diff) | |
download | mdk-af797b7574b6332e1722ef136e78aa734cba91b0.tar.gz mdk-af797b7574b6332e1722ef136e78aa734cba91b0.tar.bz2 |
Flex generation fix (invalid noreject removed)
Diffstat (limited to 'mixlib')
-rw-r--r-- | mixlib/mix_eval_scanner.l | 3 | ||||
-rw-r--r-- | mixlib/mix_scanner.l | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/mixlib/mix_eval_scanner.l b/mixlib/mix_eval_scanner.l index 9d937a1..e6c5ba2 100644 --- a/mixlib/mix_eval_scanner.l +++ b/mixlib/mix_eval_scanner.l @@ -1,7 +1,7 @@ /* -*-c-*- ------------------ mix_eval_scanner.l : * scanner used by mix_eval_t * ------------------------------------------------------------------ - * Copyright (C) 2000, 2004, 2006, 2007, 2008 Free Software Foundation, Inc. + * Copyright (C) 2000, 2004, 2006, 2007, 2008, 2019 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -55,7 +55,6 @@ static int unput_word_ (mix_word_t word); %option noinput %option noyywrap %option noyy_top_state -%option noreject %option outfile="lex.yy.c" %s EVAL diff --git a/mixlib/mix_scanner.l b/mixlib/mix_scanner.l index aeff30a..9071847 100644 --- a/mixlib/mix_scanner.l +++ b/mixlib/mix_scanner.l @@ -1,7 +1,7 @@ /* -*-c-*- -------------- mix_scanner.l : * Lexical scanner used by mix_parser_t * ------------------------------------------------------------------ - * Copyright (C) 2000, 2003, 2004, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. + * Copyright (C) 2000, 2003, 2004, 2006, 2007, 2008, 2009, 2019 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -118,7 +118,6 @@ static void unput_word_ (mix_word_t word); %option stack %option noyywrap %option noyy_top_state -%option noreject %option outfile="lex.yy.c" %s LOC |