>>>>> "José" == José Matos <[EMAIL PROTECTED]> writes:

José> Hi all, I am thinking about starting the procedures leading to
José> the alpha release. I would like to ask now "what do you think it
José> needs to be done before releasing alpha?"

Maybe check that the documentation can be typeset? I tried with the
UserGuide, and got an error with macro arguments. The following patch
seems to help.

However, viewing dvi still dies on unavailable dv2dt.

JMarc

Index: src/mathed/MathMacroArgument.C
===================================================================
--- src/mathed/MathMacroArgument.C	(revision 15892)
+++ src/mathed/MathMacroArgument.C	(working copy)
@@ -15,6 +15,7 @@
 #include "InsetMathMacro.h"
 #include "MathStream.h"
 #include "MathSupport.h"
+#include "support/convert.h"
 #include "debug.h"
 
 
@@ -33,10 +34,7 @@ MathMacroArgument::MathMacroArgument(siz
 		lyxerr << "MathMacroArgument::MathMacroArgument: wrong Argument id: "
 			<< n << endl;
 	}
-	str_.resize(3);
-	str_[0] = '#';
-	str_[1] = static_cast<char_type>('0' + n);
-	str_[2] = '\0';
+	str_ = '#' + convert<docstring>(n);
 }
 
 

Reply via email to