Skip to content
This repository has been archived by the owner on Jan 8, 2025. It is now read-only.

Remove redundant 'libmei.' prefixes for ManuScript #126

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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
14 changes: 7 additions & 7 deletions tools/langs/manuscript.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
// this will provide character encoding
for each Pair a in new_attrs
{
libmei.AddAttribute(element, a.Name, a.Value);
AddAttribute(element, a.Name, a.Value);
}
}"
GetId "(element) {
Expand Down Expand Up @@ -299,12 +299,12 @@
trace('convert: ');
trace(meiel);

nm = libmei.GetName(meiel);
at = libmei.GetAttributes(meiel);
ch = libmei.GetChildren(meiel);
tx = libmei.GetText(meiel);
tl = libmei.GetTail(meiel);
id = libmei.GetId(meiel);
nm = GetName(meiel);
at = GetAttributes(meiel);
ch = GetChildren(meiel);
tx = GetText(meiel);
tl = GetTail(meiel);
id = GetId(meiel);

tabs = '';
if (indent > 0)
Expand Down