From 73345c7dc06a6488f34d4a76906a62171a519278 Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Tue, 5 Nov 2019 19:46:50 +0300 Subject: [texo] Medium has been changed. --- examples/plain.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'examples/plain.cpp') diff --git a/examples/plain.cpp b/examples/plain.cpp index d91fcde..f03ee68 100644 --- a/examples/plain.cpp +++ b/examples/plain.cpp @@ -14,6 +14,7 @@ void plain() TexoImporterPlain importer(producer); FILE *file = fopen("plain.txt", "r"); importer.Put(file); + importer.End(); fclose(file); } @@ -25,6 +26,7 @@ void html() TexoImporterPlain importer(producer); FILE *file = fopen("plain.txt", "r"); importer.Put(file); + importer.End(); fclose(file); } @@ -36,6 +38,7 @@ void markdown() TexoImporterPlain importer(producer); FILE *file = fopen("plain.txt", "r"); importer.Put(file); + importer.End(); fclose(file); } @@ -47,6 +50,7 @@ void lines() TexoImporterPlain importer(producer); FILE *file = fopen("plain.txt", "r"); importer.Put(file); + importer.End(); fclose(file); } -- cgit v1.2.3