From 425f61be358c074bbeb2881fa7ba76e273c0a123 Mon Sep 17 00:00:00 2001 From: Angus Leeming Date: Thu, 17 Oct 2002 16:01:43 +0000 Subject: [PATCH] /Save/ emacs buffer to get rid of print statements... git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5435 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/formula.C | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/mathed/formula.C b/src/mathed/formula.C index d8924ddf89..692f46daea 100644 --- a/src/mathed/formula.C +++ b/src/mathed/formula.C @@ -339,10 +339,8 @@ string const InsetFormula::PreviewImpl::latexString() const // Note that we have to get rid of any trailing '\n's for the fix // to work. if (prefixIs(str, "\\[")) { - std::cerr << "before\n" << str << std::endl; str = rtrim(rtrim(ltrim(str, "\\["), "\n"), "\\]"); str = "$ \\displaystyle " + str + " $"; - std::cerr << "after\n" << str << std::endl; } return str;