Should I apply this now?

Alfredo
Index: Makefile.am
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/mathed/Makefile.am,v
retrieving revision 1.135
diff -u -p -u -r1.135 Makefile.am
--- Makefile.am	7 Nov 2004 12:23:55 -0000	1.135
+++ Makefile.am	11 Nov 2004 08:19:37 -0000
@@ -141,6 +141,8 @@ libmathed_la_SOURCES = \
 	math_symbolinset.h \
 	math_tabularinset.C \
 	math_tabularinset.h \
+	math_tfracinset.C \
+	math_tfracinset.h \
 	math_unknowninset.C \
 	math_unknowninset.h \
 	math_undersetinset.C \
Index: math_factory.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/mathed/math_factory.C,v
retrieving revision 1.108
diff -u -p -u -r1.108 math_factory.C
--- math_factory.C	7 Nov 2004 12:23:56 -0000	1.108
+++ math_factory.C	11 Nov 2004 08:19:37 -0000
@@ -46,7 +46,7 @@
 #include "math_substackinset.h"
 #include "math_symbolinset.h"
 #include "math_tabularinset.h"
-//#include "math_tfracinset.h"
+#include "math_tfracinset.h"
 #include "math_undersetinset.h"
 #include "math_unknowninset.h"
 #include "math_xarrowinset.h"
@@ -321,8 +321,8 @@ MathAtom createMathInset(string const & 
 		return MathAtom(new MathColorInset(false));
 	if (s == "dfrac")
 		return MathAtom(new MathDfracInset);
-//	if (s == "tfrac")
-//		return MathAtom(new MathTfracInset);
+	if (s == "tfrac")
+		return MathAtom(new MathTfracInset);
 
 	if (MacroTable::globalMacros().has(s))
 		return MathAtom(new MathMacro(s,

Reply via email to