]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.44
authorfred <fred>
Sun, 24 Mar 2002 19:35:57 +0000 (19:35 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:35:57 +0000 (19:35 +0000)
lib/binary-source-file.cc

index 34f6645de6600e147b0701207000ca9df512a5fa..f080c2dab2372c89a6e60cc7be402bc66678f1a1 100644 (file)
@@ -34,8 +34,8 @@ Binary_source_file::error_str( char const* pos_ch_c_l )
     if ( !in_b( pos_ch_c_l ) )
        return "";
 
-    char const* begin_ch_c_l = pos_ch_c_l - 8 >? ch_c_l();
-    char const* end_ch_c_l = pos_ch_c_l + 7 <? ch_c_l() + length_off();
+    char const* begin_ch_c_l = pos_ch_c_l - 8 >? ch_C();
+    char const* end_ch_c_l = pos_ch_c_l + 7 <? ch_C() + length_off();
 
     String pre_str( (Byte const*)begin_ch_c_l, pos_ch_c_l - begin_ch_c_l );
     pre_str = String_convert::bin2hex_str( pre_str );
@@ -59,6 +59,6 @@ Binary_source_file::line_i( char const* pos_ch_c_l )
     if ( !in_b( pos_ch_c_l ) )
        return 0;
 
-    return pos_ch_c_l - ch_c_l();
+    return pos_ch_c_l - ch_C();
 }