From 6e9601400736bd7b6cbc53fc6fa1b85470e6f578 Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 19:29:27 +0000 Subject: [PATCH] lilypond-0.0.30 --- hdr/tex.hh | 8 ++++---- hdr/tstream.hh | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/hdr/tex.hh b/hdr/tex.hh index c33f30e202..baff1c634d 100644 --- a/hdr/tex.hh +++ b/hdr/tex.hh @@ -6,14 +6,14 @@ #include "scalar.hh" /// parameter substitution in TeXstrings -String -substitute_args(String source, Array args); /** - this structure provides a simple macro mechanism: + this function provides a simple macro mechanism: if source == "tex%bla%", then - eval({"X","Y"}) == "texXblaY" + substitute_args(source, {"X","Y"}) == "texXblaY" */ +String +substitute_args(String source, Array args); /// parameter substitution in TeXstrings String diff --git a/hdr/tstream.hh b/hdr/tstream.hh index e75d27a4b3..27ec95cd16 100644 --- a/hdr/tstream.hh +++ b/hdr/tstream.hh @@ -5,6 +5,11 @@ #include "string.hh" /// TeX output +/** + Use this class for writing to a TeX file. + It counts braces to prevent nesting errors, and + it will add a comment sign before each newline. + */ struct Tex_stream { bool outputting_comment; ostream *os; @@ -21,9 +26,4 @@ struct Tex_stream { private: Tex_stream(Tex_stream const&); }; -/** - Use this class for writing to a TeX file. - It counts braces to prevent nesting errors, and - it will add a comment sign before each newline. - */ #endif -- 2.39.5