"David L. Johnson" <[EMAIL PROTECTED]> writes:
| Weirdness with 1.1.3:
|
| Spaces show up now in mathed. Is that intentional? It is not a good idea,
| IMO. They should have to be forced spaces. TeX handles spacing of math
| better than you can in LyX. Now, if you are at the end of a mathed box and
| hit a space, you create a space rather than leaving mathed. Nuts. Also, I am
| acustomed to typing, say "\delta ", and, as I type the space, the delta
| appears. Now a space appears as well. This is a real hassle. I'm going back
| to 1.1.2.
This is the only thing that I think can have changed that, can you
check it out?
Index: formula.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/mathed/formula.C,v
retrieving revision 1.9
diff -u -r1.9 formula.C
--- formula.C 1999/11/24 22:14:46 1.9
+++ formula.C 1999/12/01 10:09:09
@@ -1145,7 +1145,7 @@
if (('0'<= c && c<= '9') || strchr(";:!|[]().,?", c))
mathcursor->Insert(c, LM_TC_CONST);
else
- if (strchr("+/-*<>= ", c))
+ if (strchr("+/-*<>=", c))
mathcursor->Insert(c, LM_TC_BOP);
else
if (strchr(latex_special_chars, c) && c!= '_')
|
| \epsilon in mathed now shows up as a red "epsilon". Why?
The "epsilon" that used to be, was really a "varepsilon", so we
changed it blantantly so that "varepsilon" get the nice symbol and
"epsilon" gets ERT.
Lgb