]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.3.68
authorfred <fred>
Tue, 26 Mar 2002 23:24:13 +0000 (23:24 +0000)
committerfred <fred>
Tue, 26 Mar 2002 23:24:13 +0000 (23:24 +0000)
lily/include/paper-outputter.hh
lily/paper-outputter.cc

index 8758535ea8c8fce05ecc676f27d35c249e4bcc15..ff9846cfbf543b277086dcfd479523cc2b2ea9fc 100644 (file)
@@ -46,6 +46,7 @@ public:
   void output_font_switch (int i);
   void output_header ();
   void output_comment (String s);
+  void output_string (SCM s);
   void output_scheme (SCM scm);
 };
 
index 832905198153213e79695361adfd1da07473e6e8..0277f753a7ff070975412832c39495cb0ea4e5b4 100644 (file)
@@ -231,5 +231,8 @@ Paper_outputter::output_int_def (String k, int v)
 
 
 
-
-
+void
+Paper_outputter::output_string (SCM str)
+{
+  *stream_p_ <<  ly_scm2string (str);
+}