forked from pool/doxygen
Petr Gajdos
d5bccd950e
Removed functionality * Removed support for TCL (code is too buggy and unmaintained, language not very popular) Features * Added the few missing French translations [view] * Updated Swedish translation to match the latest version [view] * Adding check on configuration setting EXTENSION_MAPPING [view] * Adding commands `\rtfinclude`, `\docbookinclude`, `\maninclude` and `\xmlinclude` [view] * output on doxyparse if a function is a prototype [view] * print protection information on doxyparse [view] * Creation of svg images for formulas with inkscape [view] * Improve formula handling and rendering. [view] * Doxygen version in the messages output (#7640) [view] * Doxygen version information (#7645) [view] * Enabling Travis builds for s390x [view] * Relative markdown file reference (#7032) [view] Bugs fixed * see https://www.doxygen.nl/manual/changelog.html - modified patches % doxygen-no-lowercase-man-names.patch (refreshed) % vhdlparser-no-return.patch (refreshed) - deleted patches - 0001-issue-7248-Including-external-tag-files-with-TOC-pro.patch (upstreamed) - PR_7193_fix_blank_file_patterns.patch (upstreamed) - doxygen-64f1f2357ae764f2c8190d067aff801bc0a56721.patch (upstreamed) - doxygen-git-not-required.patch (upstreamed) - reproducible-sort.patch (upstreamed) OBS-URL: https://build.opensuse.org/package/show/devel:tools/doxygen?expand=0&rev=149
13 lines
755 B
Diff
13 lines
755 B
Diff
Index: doxygen-1.8.18/src/fortranscanner.l
|
|
===================================================================
|
|
--- doxygen-1.8.18.orig/src/fortranscanner.l 2020-07-10 09:10:24.205905062 +0200
|
|
+++ doxygen-1.8.18/src/fortranscanner.l 2020-07-10 09:13:31.570972499 +0200
|
|
@@ -2357,7 +2357,6 @@ static void initEntry(yyscan_t yyscanner
|
|
static void addCurrentEntry(yyscan_t yyscanner,bool case_insens)
|
|
{
|
|
struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
|
|
- if (case_insens) yyextra->current->name = yyextra->current->name.lower();
|
|
//printf("===Adding entry %s to %s\n", yyextra->current->name.data(), yyextra->current_root->name.data());
|
|
yyextra->last_entry = yyextra->current;
|
|
yyextra->current_root->moveToSubEntryAndRefresh(yyextra->current);
|