Jean-Marc Lasgouttes wrote: > Juergen, could you take a look at this? The off-by-one-error is in tex-strings.C. I think that the attached solution is correct and safe, but I'd like to hear your opinion. Please also tell me if I can apply this also to 1.3
Regards, Jürgen
Index: tex-strings.C =================================================================== RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/tex-strings.C,v retrieving revision 1.14 diff -u -r1.14 tex-strings.C --- tex-strings.C 5 Sep 2003 16:31:26 -0000 1.14 +++ tex-strings.C 25 Jun 2004 14:08:51 -0000 @@ -32,8 +32,8 @@ }; -char const * string_paperpackages[4] = { - "a4", "a4wide", "widemarginsa4", "" +char const * string_paperpackages[5] = { + "none", "a4", "a4wide", "widemarginsa4", "" };