Fixed bug where HTML header was not being output.
This commit is contained in:
parent
3873495498
commit
623598152e
@ -57,7 +57,7 @@ void OutputTableHTML(void)
|
||||
{
|
||||
int i, j, k;
|
||||
|
||||
void output_header();
|
||||
output_header();
|
||||
if (center_tables)
|
||||
{
|
||||
printf("<CENTER>");
|
||||
@ -262,7 +262,8 @@ void output_header(void)
|
||||
printf("\"http://www.w3.org/TR/REC-html40/loose.dtd\">");
|
||||
do_cr();
|
||||
}
|
||||
printf("<HTML><HEAD>");
|
||||
printf("<HTML>\n");
|
||||
printf("<HEAD>\n");
|
||||
do_cr();
|
||||
printf("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=");
|
||||
if ((UnicodeStrings <= 1)&&CodePage&&(CodePage != 1252))
|
||||
|
@ -225,6 +225,9 @@ static void output_opcode_string(int opcode)
|
||||
case 0x17:
|
||||
puts("External reference");
|
||||
break;
|
||||
case 0x18:
|
||||
puts("NAME");
|
||||
break;
|
||||
case 0x19:
|
||||
puts("Windows are Protected");
|
||||
break;
|
||||
@ -264,6 +267,9 @@ static void output_opcode_string(int opcode)
|
||||
case 0x2F:
|
||||
puts("File is Password protected");
|
||||
break;
|
||||
case 0x31:
|
||||
puts("FONT");
|
||||
break;
|
||||
case 0x3C:
|
||||
puts("Continues long records");
|
||||
break;
|
||||
@ -276,16 +282,9 @@ static void output_opcode_string(int opcode)
|
||||
case 0x41:
|
||||
puts("Number of Panes and their position");
|
||||
break;
|
||||
|
||||
/* error in ms docs.
|
||||
case 0x42:
|
||||
puts("CODEPAGE: Default code page");
|
||||
break;
|
||||
case 0x42:
|
||||
puts("CODENAME: VBE Object Name");
|
||||
break;
|
||||
*/
|
||||
|
||||
case 0x4D:
|
||||
puts("PLS: Environment specific print record");
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user