Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Enabled stricter compiler warnings and fixed all new warnings | Dimitri van Heesch | 2020-03-08 | 1 | -11/+17 |
| | |||||
* | Fix compiler warnings on Windows (Visual Studio) | Dimitri van Heesch | 2020-02-12 | 1 | -0/+3 |
| | |||||
* | Added missing debug flags for scanner that were made reentrant | Dimitri van Heesch | 2019-12-05 | 1 | -1/+1 |
| | |||||
* | Remove bogus flex code | Dimitri van Heesch | 2019-11-18 | 1 | -11/+0 |
| | |||||
* | Spelling corrections for src directory | albert-github | 2019-11-05 | 1 | -1/+1 |
| | | | | | | | | Spelling corrections as found by codespell and in #561. Some reported problems were already fixed, others are fixed here, with some exceptions (a,o.): - "referenceby" in defgen.cpp as this is in the output and I cannot oversee the consequences (looks like none, but ...) - "HANGEUL_CHARSET" left as is as in some MS documentation is written: 'HANGUL_CHARSET: Also spelled "Hangeul". Specifies the Hangul Korean character set.' (https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-wmf/0d0b32ac-a836-4bd2-a112-b6000a1b4fc9). | ||||
* | Consistent way to show scanner state | albert-github | 2019-09-05 | 1 | -0/+2 |
| | | | | | Create a consistent way to display the state mnemonics of the different scanners (analogous to the fortranscanner.l) Use an automatic procedure to generate the routine with the translation of the states to a string. | ||||
* | Merge branch 'feature/bug_endblock_msg' of ↵ | Dimitri van Heesch | 2019-08-04 | 1 | -7/+7 |
|\ | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_endblock_msg | ||||
| * | Correction warning message | albert-github | 2019-06-01 | 1 | -7/+7 |
| | | | | | | | | Consistency | ||||
* | | Merge branch 'feature/issue_6831' of ↵ | Dimitri van Heesch | 2019-08-04 | 1 | -3/+14 |
|\ \ | |/ |/| | | | https://github.com/albert-github/doxygen into albert-github-feature/issue_6831 | ||||
| * | issue #6831 Failure to recognize class array with PHP in @var | albert-github | 2019-02-15 | 1 | -2/+13 |
| | | | | | | | | | | | | | | | | There are 2 different situations here: - @var, here a special change is necessary to check and handle whether or not we are in PHP (declinfo.*, doxygen.cpp) - @param - the type recognition for the PHP type has to be extended with the `[]` possibility and subsequently the `[]` part has to be handled separately from the 'datatype' (doctokinizer.l, docparser.*). - In the output we now can have multiple text strings resulting in a small change in handling of the separator between the data type (*docvisitor.*) | ||||
* | | enable debug for re-entrant lexers | Adrian Negreanu | 2019-05-22 | 1 | -0/+4 |
| | | |||||
* | | Fixed memory leak in reentrant lexers | Dimitri van Heesch | 2019-05-12 | 1 | -3/+5 |
| | | |||||
* | | declinfo.l: enable reentrant | Adrian Negreanu | 2019-05-04 | 1 | -124/+136 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * put the global variables in struct declinfoYY_state. * globally define yyscanner and declinfo_extra. these two should be per-thread. * add a new yyscan_t function parameter when these functions are referenced: - yyin, yyout, yyextra, yyleng, yytext, yylineno, yycolumn, and yy_flex_debug. - the macros BEGIN, YY_START, YYSTATE, yymore, unput, and yyless - the functions that deal with input buffers: yyrestart - others: yy_switch_to_buffer, yy_create_buffer, yy_delete_buffer, yy_flush_buffer, yypush_buffer_state, yypop_buffer_state, yy_scan_buffer, yy_scan_string, and yy_scan_bytes * add a new yyscan_t function parameter when globals are referenced, to get the yyextra out of the yyscanner. | ||||
* | | declinfo.l: move function declarations before | Adrian Negreanu | 2019-05-04 | 1 | -38/+41 |
| | | |||||
* | | declinfo.l: group flex options toghether | Adrian Negreanu | 2019-05-04 | 1 | -5/+3 |
|/ | |||||
* | flex: use %option instead of command line options. | Adrian Negreanu | 2016-09-21 | 1 | -0/+2 |
| | |||||
* | drop #include <unistd.h> | Adrian Negreanu | 2015-05-15 | 1 | -1/+2 |
| | | | | Signed-off-by: Adrian Negreanu <adrian.m.negreanu@intel.com> | ||||
* | Bump copyright year | Dimitri van Heesch | 2015-02-26 | 1 | -1/+1 |
| | |||||
* | Remove unused local and static global variables | albert-github | 2014-12-27 | 1 | -1/+0 |
| | | | | Remove unused local and static global variables. Variables have been identified by Understand (version 758) from Scitools. | ||||
* | Updated copyright | Dimitri van Heesch | 2014-02-11 | 1 | -1/+1 |
| | |||||
* | Debug output for lexical analyzer | Albert | 2013-11-13 | 1 | -0/+2 |
| | | | | | | | | | | | | | | In case of error messages like: input buffer overflow, can't enlarge buffer because scanner uses REJECT it is not always directly clear from which lexical analyzer (.l file) this problem comes. This patch helps to find these problems and does the following things: - when using the option -d lex with doxygen each time a lexical analyzer is called at the start a line like the following line will be given: Entering lexical analyzer: pre.l (for: ..../file.c) and at the end: Finished lexical analyzer: pre.l (for: ..../file.c) - in case the lexical analyzer has been translated with the -d option of lex / flex the above mentioned lines will be given as part of the lexical analyzer output (to stderr) and look like: --entering lexical analyzer: pre.l (for: ..../file.c) --finished lexical analyzer: pre.l (for: ..../file.c) | ||||
* | Release-1.8.3.1 | Dimitri van Heesch | 2013-01-20 | 1 | -1/+1 |
| | |||||
* | Release-1.8.1.2-20120729 | Dimitri van Heesch | 2012-07-29 | 1 | -0/+2 |
| | |||||
* | Release-1.7.6.1-20120220 | Dimitri van Heesch | 2012-02-20 | 1 | -1/+1 |
| | |||||
* | Release-1.7.3-20110123 | Dimitri van Heesch | 2011-01-23 | 1 | -1/+1 |
| | |||||
* | Release-1.7.2-20101118 | Dimitri van Heesch | 2010-11-18 | 1 | -1/+3 |
| | |||||
* | Release-1.6.2-20100124 | Dimitri van Heesch | 2010-01-24 | 1 | -1/+1 |
| | |||||
* | Release-1.5.7.1-20081225 | Dimitri van Heesch | 2008-12-25 | 1 | -1/+1 |
| | |||||
* | Release-1.5.6-20080914 | Dimitri van Heesch | 2008-09-14 | 1 | -1/+1 |
| | |||||
* | Release-1.5.4-20080101 | Dimitri van Heesch | 2008-01-17 | 1 | -2/+2 |
| | |||||
* | Release-1.5.4 | Dimitri van Heesch | 2008-01-16 | 1 | -1/+1 |
| | |||||
* | Release-1.5.3-20070815 | Dimitri van Heesch | 2007-08-15 | 1 | -1/+1 |
| | |||||
* | Release-1.5.1-20070219 | Dimitri van Heesch | 2007-02-19 | 1 | -1/+1 |
| | |||||
* | Release-1.5.1-20070107 | Dimitri van Heesch | 2007-01-07 | 1 | -1/+1 |
| | |||||
* | Release-1.5.1-20061202 | Dimitri van Heesch | 2006-12-02 | 1 | -1/+1 |
| | |||||
* | Release-1.4.6-20060507 | Dimitri van Heesch | 2006-05-07 | 1 | -1/+1 |
| | |||||
* | Release-1.4.2 | Dimitri van Heesch | 2005-03-28 | 1 | -1/+13 |
| | |||||
* | Release-1.4.1 | Dimitri van Heesch | 2005-01-11 | 1 | -1/+1 |
| | |||||
* | Release-1.3.9.1-20041224 | Dimitri van Heesch | 2004-12-24 | 1 | -1/+1 |
| | |||||
* | Release-1.3.9.1-20041221 | Dimitri van Heesch | 2004-12-21 | 1 | -1/+11 |
| | |||||
* | Release-1.3.8-20040913 | Dimitri van Heesch | 2004-09-13 | 1 | -1/+1 |
| | |||||
* | Release-1.3.6-20040324 | Dimitri van Heesch | 2004-03-24 | 1 | -1/+5 |
| | |||||
* | Release-1.3.6-20040222 | Dimitri van Heesch | 2004-02-22 | 1 | -0/+3 |
| | |||||
* | Release-1.3.5-20040105 | Dimitri van Heesch | 2004-01-05 | 1 | -1/+1 |
| | |||||
* | Release-1.3-20030514 | Dimitri van Heesch | 2003-05-14 | 1 | -3/+1 |
| | |||||
* | Release-1.3-rc2-20030119 | Dimitri van Heesch | 2003-01-19 | 1 | -1/+1 |
| | |||||
* | Doxygen-1.2.13-20020122 | Dimitri van Heesch | 2002-01-22 | 1 | -1/+1 |
| | |||||
* | Release-1.2.9.1 | Dimitri van Heesch | 2001-08-05 | 1 | -2/+4 |
| | |||||
* | Release-1.2.8-20010723 | Dimitri van Heesch | 2001-07-23 | 1 | -9/+25 |
| | |||||
* | Release-1.2.8-20010715 | Dimitri van Heesch | 2001-07-15 | 1 | -1/+1 |
| |