One-liner:
(heck, one character):
Abi was incorrectly exporting backslashes in LaTeX, producing
documents that wouldn't compile; attached fixes it.
--
-nils
Index: abi/src/wp/impexp/xp/ie_exp_LaTeX.cpp
===================================================================
RCS file: /cvsroot/abi/src/wp/impexp/xp/ie_exp_LaTeX.cpp,v
retrieving revision 1.29
diff -u -r1.29 ie_exp_LaTeX.cpp
--- abi/src/wp/impexp/xp/ie_exp_LaTeX.cpp 2001/07/06 11:30:58 1.29
+++ abi/src/wp/impexp/xp/ie_exp_LaTeX.cpp 2001/07/06 19:38:26
@@ -772,7 +772,7 @@
switch (*pData)
{
case '\\':
- sBuf += "\\ensuremath{\\backslash}}";
+ sBuf += "\\ensuremath{\\backslash}";
pData++;
break;