diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2020-07-01 11:58:33 +0200 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2020-07-01 11:58:41 +0200 |
| commit | 64de9bd3fcbef7ae37e015675fcfe29eaeca88cd (patch) | |
| tree | 52209668b1a0ad9742bf30d0d7ced16b9293ad71 /src | |
| parent | e98d7d8df57d860058d078e085737437ed55e79e (diff) | |
Add "†" HTML entity.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Fl_Help_View.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Fl_Help_View.cxx b/src/Fl_Help_View.cxx index 7a091f62e..4b399e1b0 100644 --- a/src/Fl_Help_View.cxx +++ b/src/Fl_Help_View.cxx @@ -3693,7 +3693,8 @@ quote_char(const char *p) { // I - Quoted string { "yacute;", 7, 253 }, { "yen;", 4, 165 }, { "Yuml;", 5, 0x0178 }, - { "yuml;", 5, 255 } + { "yuml;", 5, 255 }, + { "dagger;", 7, 0x2020 } }; if (!strchr(p, ';')) return -1; |
