Re: Loading a document kills umlauts in formula

1999-09-25 Thread Gregor Hoffleit
This bug (umlauts in math text mode are lost when loading a file) is no longer present in 1.0.4pre8. Thanks to whoever fixed that. Still, I wonder if it isn't just another bug that with LANG=de_DE, I'm able to enter umlauts in math text mode, while with other locales (e.g. LANG=us_US), I'm not. N

paste to X11 window

1999-09-25 Thread Ulrich Günther
I know this is mentioned in the known-bugs: It is impossible to paste any highlighted text in lyx to a X11 window, not even to another running LYX. Is there a way around? Does anyone have an idea how to fix this bug? Ulrich

Re: 'new'/'delete' and malloc()/free() - lclint for C++?

1999-09-25 Thread Lars Gullik Bjønnes
"Arnd Hanses" <[EMAIL PROTECTED]> writes: | { | [VIP] | FOO foo; | FOO * p = foo; | VIPfunc(p) | [VIP] | } We should never to a thing like that. What we could/should do is: VIPFunc(FOO & r) { // use r } { [VIP] FOO foo; VIPFunc(foo);