summaryrefslogtreecommitdiffstats
path: root/flashtools/flash.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'flashtools/flash.cpp')
-rw-r--r--flashtools/flash.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/flashtools/flash.cpp b/flashtools/flash.cpp
index 52b5dea..ca6d59d 100644
--- a/flashtools/flash.cpp
+++ b/flashtools/flash.cpp
@@ -188,8 +188,9 @@ void outputCSV(const vector<Word> &wordList) {
// output header
cout
<< "FreqKJV|"
- << "Greek|"
<< "Strongs|"
+ << "Greek|"
+ << "Escaped UTF-8|"
<< "TranslationInAV"
<< "\n";
/*
@@ -223,8 +224,9 @@ void outputCSV(const vector<Word> &wordList) {
s = itoa(atoi(s.c_str())).c_str();
cout
<< w.freq << "|"
- << escapedUTF8(w.utf8).c_str() << "|"
<< w.strong << "|"
+ << w.utf8.c_str() << "|"
+ << escapedUTF8(w.utf8).c_str() << "|"
<< prettyKJVFreq(w.kjvFreq).c_str()
/*
<< w.freq << "|"
@@ -339,7 +341,7 @@ vector<Word> processWords(const char *range, bool addAll = true, SWBuf modName =
SWModule *tmpBible = manager.getModule(modName);
if (!tmpBible) {
- cerr << "Unable to locate KJV module" << endl;
+ cerr << "Unable to locate " << modName.c_str() << " module" << endl;
exit(1);
}
SWModule &bible = *tmpBible;