mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
Set array length from int const
This commit is contained in:
parent
f84acc0e34
commit
b3f7eb6af3
@ -495,12 +495,13 @@ docstring InsetCommandParams::prepareCommand(OutputParams const & runparams,
|
||||
if (handling & ParamInfo::HANDLING_INDEX_ESCAPE) {
|
||||
// Now escape special commands
|
||||
static docstring const quote = from_ascii("\"");
|
||||
static char_type const chars_escape[4] = { '"', '@', '|', '!' };
|
||||
int const nchars_escape = 4;
|
||||
static char_type const chars_escape[nchars_escape] = { '"', '@', '|', '!' };
|
||||
|
||||
if (!result.empty()) {
|
||||
// The characters in chars_name[] need to be changed to a command when
|
||||
// they are LaTeXified.
|
||||
for (int k = 0; k < 4; k++)
|
||||
for (int k = 0; k < nchars_escape; k++)
|
||||
for (size_t i = 0, pos;
|
||||
(pos = result.find(chars_escape[k], i)) != string::npos;
|
||||
i = pos + 2)
|
||||
|
Loading…
Reference in New Issue
Block a user