1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-14 16:50:58 +00:00

* src/doc.c (Fsubstitute_command_keys): Make previous change compile.

This commit is contained in:
Glenn Morris 2015-06-18 19:15:05 -04:00
parent 52c3946c87
commit d213cf0400

View File

@ -932,7 +932,7 @@ Otherwise, return a new string. */)
strp = SDATA (string) + idx;
}
}
else if ((Vhelp_quote_translation == Qprefer_unicode)
else if (EQ (Vhelp_quote_translation, Qprefer_unicode)
&& (strp[0] == '`'))
{
in_quote = true;
@ -943,7 +943,7 @@ Otherwise, return a new string. */)
idx = strp - SDATA (string) + 1;
goto subst;
}
else if ((Vhelp_quote_translation == Qprefer_unicode)
else if (EQ (Vhelp_quote_translation, Qprefer_unicode)
&& (strp[0] == '\'' && in_quote))
{
in_quote = false;
@ -951,7 +951,7 @@ Otherwise, return a new string. */)
goto subst_quote;
}
else if ((Vhelp_quote_translation == Qtraditional)
else if (EQ (Vhelp_quote_translation, Qtraditional)
&& (strp[0] == 0xE2)
&& (strp[1] == 0x80)
&& ((strp[2] == 0x98) /* curly opening quote */