Martin Vermeer wrote:
> Yes, those are the ones I have in my local copy (good work!). I
> simplified FormDocument a little further after that still: replaced
> all_branches_ etc. by a class instantiation branchlist_. Attached.

Good work. From my point of view, this could go in.
Juergen.

P.S.: can you please apply the attached fix to insetnote?
Index: src/insets/insetnote.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/insets/insetnote.C,v
retrieving revision 1.32
diff -u -r1.32 insetnote.C
--- src/insets/insetnote.C	27 Jul 2003 13:02:26 -0000	1.32
+++ src/insets/insetnote.C	28 Jul 2003 06:55:00 -0000
@@ -153,7 +153,7 @@
 	if (pt == "Comment")
 		os << "%\n\\begin{comment}\n"; // remember to validate
 	else if (pt == "Greyedout")
-		os << "%\n\\textcolor[gray]{0.8}{";
+		os << "%\n\\color[gray]{0.8}";
 
 	if (pt != "Note")
 		i = inset.latex(buf, os, runparams);
@@ -162,7 +162,7 @@
 		os << "%\n\\end{comment}\n";
 		i += 3;
 	} else if (pt == "Greyedout") {
-		os << "\\normalcolor%\n}";
+		os << "\\normalcolor%\n";
 		i += 2;
 	}
 	return i;

Reply via email to