summaryrefslogtreecommitdiff
path: root/mf/feta-macros.mf
diff options
context:
space:
mode:
Diffstat (limited to 'mf/feta-macros.mf')
-rw-r--r--mf/feta-macros.mf8
1 files changed, 5 insertions, 3 deletions
diff --git a/mf/feta-macros.mf b/mf/feta-macros.mf
index 9d8d697108..9a695225fb 100644
--- a/mf/feta-macros.mf
+++ b/mf/feta-macros.mf
@@ -21,6 +21,8 @@
% debugging
%
+input debugging-settings.mf
+
def print_penpos (suffix $) =
message
"z" & str$ & "l = (" & decimal x.$.l & ", " &decimal y.$.l & ");"
@@ -50,15 +52,15 @@ def treq =
enddef;
-def draw_staff_if_debugging (expr first, last, offset) =
+def draw_staff_if_debugging (expr first, last) =
if test <> 0:
pickup pencircle scaled stafflinethickness;
for i := first step 1 until last:
draw (-staff_space,
- (i + offset) * staff_space_rounded)
+ (i + stafflines_y_offset) * staff_space_rounded)
-- (4 staff_space,
- (i + offset) * staff_space_rounded);
+ (i + stafflines_y_offset) * staff_space_rounded);
endfor;
fi;
enddef;