summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* cast to get rid of warningsrlar2016-03-08
|
* cast and fix usage of log10(), ceil to prevent buffer overflowrlar2016-03-08
|
* tables.c, sprinkle casts to get rid of warningsrlar2016-03-08
|
* yytbl_data_compress(), change type of local newsz to get rid of warningsrlar2016-03-08
|
* change type of struct yytbl_writer.total_written to get rid of warningsrlar2016-03-08
|
* change argument type of yytbl_writen() to get rid of warningsrlar2016-03-08
|
* yytbl_write8/16/32(), change type of local variables to get rid of warningsrlar2016-03-08
|
* change return type and rename int htoi()/otoi() --> unsigned int htoui()/otoui()rlar2016-03-08
|
* Mention 2.6.1 release dateWill Estes2016-03-01
|
* avoid warning, add (int) cast to the read() return valuerlar2016-03-01
| | | | For similiarity with the fread() case.
* avoid warning, POSIX says yyless() has an `int' argumentrlar2016-03-01
|
* use type size_t in filter_tee_header() to avoid warningsrlar2016-03-01
|
* add (size_t) casts to malloc invocations to prevent warningsrlar2016-03-01
|
* add (int) casts to some strlen() invocations to prevent warningsrlar2016-02-29
|
* ndlookup(), char *, to get rid of casts and warningsrlar2016-02-29
|
* ndinstal(), char *, to get rid of casts and warningsrlar2016-02-29
|
* cclinstal() and ccllookup(), char *, to get rid of casts and warningsrlar2016-02-29
|
* warning: redundant redeclaration of ‘gen_next_state’ [-Wredundant-decls]rlar2016-02-29
|
* warning: no previous prototype for ‘mkecstbl’ [-Wmissing-prototypes]rlar2016-02-29
|
* warning: suggest parentheses around assignment used as truth value ↵rlar2016-02-29
| | | | [-Wparentheses]
* warning: redundant redeclaration of ‘yywrap’ [-Wredundant-decls]rlar2016-02-28
|
* warning: redundant redeclaration of ‘yylval’ [-Wredundant-decls]rlar2016-02-28
|
* warning: redundant redeclaration of ‘yyin’ [-Wredundant-decls]rlar2016-02-28
|
* warning: redundant redeclaration of ‘yyparse’ [-Wredundant-decls]rlar2016-02-28
|
* unification, rename some morerlar2016-02-28
| | | | | rename these too for improved similiarity: OPTION_OP OPT_HEADER OPT_EXTRA_TYPE OPT_TABLES
* fix name clash, OPT_OUTFILE from parse.y and from options.hrlar2016-02-28
| | | | | | these collide: OPT_OUTFILE OPT_PREFIX OPT_YYCLASS rename them TOK_... in the parser
* Prototyped reallocarray implementationWill Estes2016-02-28
|
* Removed custom strcasecmp() functionWill Estes2016-02-28
|
* fwrite wants a size_t, yyleng is int per posixrlar2016-02-28
|
* Remove some unneeded castsrlar2016-02-28
|
* warning: negative integer implicitly converted to unsigned type ↵rlar2016-02-28
| | | | [-Wsign-conversion]
* dfa.c:157:24: warning: conversion to 'size_t' from 'int' may change the sign ↵rlar2016-02-27
| | | | | | of the result [-Wsign-conversion] most certainly safe cast
* ccl.c:86:19: warning: conversion to 'unsigned char' from 'int' may alter its ↵rlar2016-02-27
| | | | | | value [-Wconversion] ch seems to have been checked for proper range some lines above
* warning: deprecated directive, use '%pure-parser' [-Wdeprecated]rlar2016-02-27
|
* warning: no previous prototype for 'do_nothing' [-Wmissing-prototypes]rlar2016-02-27
|
* included stdlib.h headerrlar2016-02-27
|
* Described more post v2.6.0 changesWill Estes2016-02-27
|
* build: Removed bzip2 distribiution archiveWill Estes2016-02-27
|
* removed obsolete program checkWill Estes2016-02-27
|
* Made some program checks more robustWill Estes2016-02-27
|
* Remove unneeded cast to intrlar2016-02-27
|
* Fixed incorrect integer typeWill Estes2016-02-27
|
* Fix more integer types, resolves sf 184, 187Will Estes2016-02-27
|
* Removed some type conversion warningsRobert Larice2016-02-26
|
* Changed another buffer size to int; resolves gh#61Will Estes2016-02-26
|
* Changed type of yy_n_chars to int; gh#53, sf#160.Will Estes2016-02-24
| | | | | | | The variable yy_n_chars had been of type yy_size_t which is incorrect given its use in read(). While it might be adviseable to look at defining a yy_ssize_t, there might be some issues doing this and so, for now, at least, we'll punt back to int.
* Fixed size of bufferallocation, resolved gh#54.Will Estes2016-02-24
| | | | The value of n_alloc was a count, not a size. Multiplying the value by the element size was incorrect. That multiplication was already being done and having it done twice was incorrect.
* Allow '%option noline' in flex input file, resolves gh#56.Tobias Klauser2016-02-24
| | | | | | | Allow specifying '%option noline' in the input file, leading to the same effect as calling flex with the command line option --noline. Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
* Emit no #line directives if gen_line_dirs is false, resolves igh#55.Tobias Klauser2016-02-24
| | | | | | | | There are two instances in the code which will print a #line directive to the resulting lexer, regardless of the value of gen_line_dirs. Fix them, so they also respect gen_line_dirs. Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
* Converted K&R style function definitions to ANSI C styleTobias Klauser2016-02-16
| | | | | Consistently make use of the ANSI C function definition style instead of the K&R style.