mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix _U_psilon
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2698 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
401e0c2609
commit
7a5950750f
@ -1314,13 +1314,15 @@ void MathCursor::interpret(string const & s)
|
|||||||
|
|
||||||
if (isalpha(c) && (lastcode_ == LM_TC_GREEK || lastcode_ == LM_TC_GREEK1)) {
|
if (isalpha(c) && (lastcode_ == LM_TC_GREEK || lastcode_ == LM_TC_GREEK1)) {
|
||||||
static char const greekl[][26] =
|
static char const greekl[][26] =
|
||||||
{"alpha", "beta", "chi", "delta", "epsilon", "phi", "gamma", "eta",
|
{"alpha", "beta", "chi", "delta", "epsilon", "phi",
|
||||||
"iota", "", "kappa", "lambda", "mu", "nu", "omikron", "pi", "omega",
|
"gamma", "eta", "iota", "", "kappa", "lambda", "mu",
|
||||||
"rho", "sigma", "tau", "theta", "", "", "xi", "ypsilon", "zeta"};
|
"nu", "omikron", "pi", "omega", "rho", "sigma",
|
||||||
|
"tau", "upsilon", "theta", "", "xi", "upsilon", "zeta"};
|
||||||
static char const greeku[][26] =
|
static char const greeku[][26] =
|
||||||
{"Alpha", "Beta", "Chi", "Delta", "Epsilon", "Phi", "Gamma", "Eta",
|
{"Alpha", "Beta", "Chi", "Delta", "Epsilon", "Phi",
|
||||||
"Iota", "", "Kappa", "Lambda", "Mu", "Nu", "Omikron", "Pi", "Omega",
|
"Gamma", "Eta", "Iota", "", "Kappa", "Lambda", "Mu",
|
||||||
"Rho", "Sigma", "Tau", "Theta", "", "", "xi", "Ypsilon", "Zeta"};
|
"Nu", "Omikron", "Pi", "Omega", "Rho", "Sigma", "Tau",
|
||||||
|
"Upsilon", "Theta", "", "xi", "Upsilon", "Zeta"};
|
||||||
|
|
||||||
latexkeys const * l = 0;
|
latexkeys const * l = 0;
|
||||||
if ('a' <= c && c <= 'z')
|
if ('a' <= c && c <= 'z')
|
||||||
|
Loading…
Reference in New Issue
Block a user