File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -299,8 +299,8 @@ handling (to place the files in the right place).
299
299
300
300
=item LEXFLAGS
301
301
302
- Command-line arguments to pass to C<lex>. The default is to pass C<--warn>,
303
- which tells C<flex> (the default C<lex> implementation) to produce warnings .
302
+ Command-line arguments to pass to C<lex>. The default is an empty set of
303
+ options .
304
304
305
305
=back
306
306
@@ -10820,7 +10820,7 @@ EOF
10820
10820
10821
10821
default_lexflags => {
10822
10822
output => 'optionset:LEXFLAGS',
10823
- outdepends => ['optstring:--warn' ],
10823
+ outdepends => [],
10824
10824
verb => 'determined',
10825
10825
low_message_priority => 1,
10826
10826
command_line_override => 'LEXFLAGS',
Original file line number Diff line number Diff line change 11
11
# include <sys/time.h>
12
12
#endif
13
13
14
- #include "tilesequence.h"
15
14
#include "nhcurses.h"
16
15
#include "brandings.h"
17
16
#include <ctype.h>
17
+ /* tilesequence.h must come last because it includes some definitions, like
18
+ 'u', which break standard header files. */
19
+ #include "tilesequence.h"
18
20
19
21
#define sgn (x ) ((x) >= 0 ? 1 : -1)
20
22
You can’t perform that action at this time.
0 commit comments