1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-06 22:10:53 +00:00

Hmm, seem b.delta decided not to become 0x03B4 like it should

This commit is contained in:
Jonas Fonseca 2006-01-10 15:39:11 +01:00 committed by Jonas Fonseca
parent b673e64e10
commit d2e346436a
2 changed files with 3 additions and 3 deletions

View File

@ -294,7 +294,7 @@ b.Xi ISOgrk4 0x039E # GREEK CAPITAL LETTER XI
b.alpha ISOgrk4 0x03B1 # GREEK SMALL LETTER ALPHA
b.beta ISOgrk4 0x03B2 # GREEK SMALL LETTER BETA
b.chi ISOgrk4 0x03C7 # GREEK SMALL LETTER CHI
b.delta ? 0x03B3 # GREEK SMALL LETTER GAMMA
b.delta ISOgrk4 0x03B4 # GREEK SMALL LETTER DELTA
b.epsi ISOgrk4 0x03B5 # GREEK SMALL LETTER EPSILON
b.epsis ISOgrk4 0x03B5 # GREEK SMALL LETTER EPSILON
b.epsiv ISOgrk4 0x03B5 # GREEK SMALL LETTER EPSILON

View File

@ -259,7 +259,7 @@ struct entity { char *s; unicode_val_T c; } entities [1002] = {
{ "b.alpha", 0x03B1 }, /* GREEK SMALL LETTER ALPHA */
{ "b.beta", 0x03B2 }, /* GREEK SMALL LETTER BETA */
{ "b.chi", 0x03C7 }, /* GREEK SMALL LETTER CHI */
{ "b.delta", 0x03B3 }, /* GREEK SMALL LETTER GAMMA */
{ "b.delta", 0x03B4 }, /* GREEK SMALL LETTER DELTA */
{ "b.epsi", 0x03B5 }, /* GREEK SMALL LETTER EPSILON */
{ "b.epsis", 0x03B5 }, /* GREEK SMALL LETTER EPSILON */
{ "b.epsiv", 0x03B5 }, /* GREEK SMALL LETTER EPSILON */
@ -1005,4 +1005,4 @@ struct entity { char *s; unicode_val_T c; } entities [1002] = {
{ NULL, 0 }
};
#define N_ENTITIES 1001
#define N_ENTITIES 1001