From: fred Date: Tue, 26 Mar 2002 23:24:13 +0000 (+0000) Subject: lilypond-1.3.68 X-Git-Tag: release/1.5.59~1508 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=9dc048c1e0c3eb2eb6a552555a631821f8f681b4;p=lilypond.git lilypond-1.3.68 --- diff --git a/lily/include/paper-outputter.hh b/lily/include/paper-outputter.hh index 8758535ea8..ff9846cfbf 100644 --- a/lily/include/paper-outputter.hh +++ b/lily/include/paper-outputter.hh @@ -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); }; diff --git a/lily/paper-outputter.cc b/lily/paper-outputter.cc index 8329051981..0277f753a7 100644 --- a/lily/paper-outputter.cc +++ b/lily/paper-outputter.cc @@ -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); +}