Could anybody please apply the attached patch soon? Andre' -- André Pönitz ............................................. [EMAIL PROTECTED]
Index: frontends/xforms/FormMathsDelim.C =================================================================== RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/frontends/xforms/FormMathsDelim.C,v retrieving revision 1.8 diff -u -p -r1.8 FormMathsDelim.C --- frontends/xforms/FormMathsDelim.C 2001/07/29 17:39:00 1.8 +++ frontends/xforms/FormMathsDelim.C 2001/08/09 15:20:27 @@ -21,7 +21,6 @@ #include "LyXView.h" #include "bmtable.h" #include "debug.h" -#include "mathed/symbol_def.h" #include "support/lstrings.h" #include "lyxfunc.h" @@ -32,11 +31,11 @@ static int const delim_rversion[] = { 1,1,3,3,4,5,7,7,9,9,10,11, 13,13,14,15,16,17,19,19,20,21,22,23 }; -static int delim_values[] = { - '(', ')', LM_lceil, LM_rceil, LM_uparrow, LM_Uparrow, - '[', ']', LM_lfloor, LM_rfloor, LM_updownarrow, LM_Updownarrow, - '{', '}', '/', LM_backslash, LM_downarrow, LM_Downarrow, - LM_langle, LM_rangle, '|', LM_Vert, '.', 0 +static char const * delim_values[] = { + "(", ")", "lceil", "rceil", "uparrow", "Uparrow", + "[", "]", "lfloor", "rfloor", "updownarrow", "Updownarrow", + "{", "}", "/", "\\", "downarrow", "Downarrow", + "langle", "rangle", "|", "Vert", ".", 0 }; using std::endl;