Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix missing spine terminators in myank #70

Merged
merged 1 commit into from
Mar 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/humlib.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//
// Programmer: Craig Stuart Sapp <[email protected]>
// Creation Date: Sat Aug 8 12:24:49 PDT 2015
// Last Modified: Fri 3 Mar 11:37:45 GMT 2023
// Last Modified: Sa 11 Mär 2023 00:20:06 CET
// Filename: humlib.h
// URL: https://github.com/craigsapp/humlib/blob/master/include/humlib.h
// Syntax: C++11
Expand Down
4 changes: 2 additions & 2 deletions src/humlib.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//
// Programmer: Craig Stuart Sapp <[email protected]>
// Creation Date: Sat Aug 8 12:24:49 PDT 2015
// Last Modified: Fri 3 Mar 11:37:45 GMT 2023
// Last Modified: Sa 11 Mär 2023 00:20:06 CET
// Filename: /include/humlib.cpp
// URL: https://github.com/craigsapp/humlib/blob/master/src/humlib.cpp
// Syntax: C++11
Expand Down Expand Up @@ -103695,7 +103695,7 @@ void Tool_myank::printEnding(HumdrumFile& infile, int lastline, int adjlin) {

if (startline >= 0) {
for (i=startline; i<infile.getLineCount(); i++) {
if (m_hideEnding && (i >= ending)) {
if (m_hideEnding && (i > ending)) {
if (infile[i].rfind("!!!RDF", 0) == 0) {
m_humdrum_text << infile[i] << "\n";
}
Expand Down
2 changes: 1 addition & 1 deletion src/tool-myank.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1783,7 +1783,7 @@ void Tool_myank::printEnding(HumdrumFile& infile, int lastline, int adjlin) {

if (startline >= 0) {
for (i=startline; i<infile.getLineCount(); i++) {
if (m_hideEnding && (i >= ending)) {
if (m_hideEnding && (i > ending)) {
if (infile[i].rfind("!!!RDF", 0) == 0) {
m_humdrum_text << infile[i] << "\n";
}
Expand Down