mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Cleanup following the removal of HTML entities
The remaining part that was not handled in the previous commit. It focuses on lib/symbols.
This commit is contained in:
parent
bc73a85778
commit
c77872f314
1670
lib/symbols
1670
lib/symbols
File diff suppressed because it is too large
Load Diff
@ -187,17 +187,15 @@ void initSymbols()
|
|||||||
// or
|
// or
|
||||||
// \def\macroname{definition} requires
|
// \def\macroname{definition} requires
|
||||||
// or
|
// or
|
||||||
// \def\macroname{definition} extra htmlname xmlname requires
|
// \def\macroname{definition} extra xmlname requires
|
||||||
// TODO: remove htmlname
|
|
||||||
istringstream is(line);
|
istringstream is(line);
|
||||||
string macro;
|
string macro;
|
||||||
string required;
|
string required;
|
||||||
string extra;
|
string extra;
|
||||||
string htmlname; // Ignored. TODO: remove.
|
|
||||||
string xmlname;
|
string xmlname;
|
||||||
bool hidden = false;
|
bool hidden = false;
|
||||||
is >> setw(65536) >> macro >> required;
|
is >> setw(65536) >> macro >> required;
|
||||||
if ((is >> htmlname >> xmlname)) {
|
if ((is >> xmlname)) {
|
||||||
extra = required;
|
extra = required;
|
||||||
if (!(is >> required))
|
if (!(is >> required))
|
||||||
required = "";
|
required = "";
|
||||||
|
Loading…
Reference in New Issue
Block a user