Let Lyx crash ;)

2004-06-18 Thread peter.may
Hello, just a sidenote: While adding words to the personal dictionary during the ispell-check I accidentially added a wrong word. So while Lyx had still opened its spellchecker popup I opened my .ispell_ngerman in kate and deleted the accidentially added word by hand, save the file and closed kate

Re: [PATCH][LyX/Mac] Disapearing menus syndrom, part II

2004-06-18 Thread Bennett Helm
On Jun 18, 2004, at 1:10 PM, Angus Leeming wrote: Bennett Helm wrote: I get the following compile error: lyx_gui.C: In function `FuncStatus lyx_gui::getStatus(const FuncRequest&)': lyx_gui.C:257: warning: control reaches end of non-void function lyx_gui.C: At global scope: lyx_gui.C:260: error: par

Re: DocBook Export - must distinguish between "equation" and "inlineequation"

2004-06-18 Thread Jose' Matos
On Wednesday 19 May 2004 02:30, Chris Karakas wrote: > Hello again, Hello, regarding the CDATA or not CDATA inside equations if I try to insert an inequality inside the equation the docbook output is: ... \[ E ... without the CDATA jade complains: jade:f1.sgml:33:4:E: character "^" not

Re: [PATCH][LyX/Mac] Disapearing menus syndrom, part II

2004-06-18 Thread Angus Leeming
Bennett Helm wrote: > I get the following compile error: > > lyx_gui.C: In function `FuncStatus lyx_gui::getStatus(const > FuncRequest&)': > lyx_gui.C:257: warning: control reaches end of non-void function > lyx_gui.C: At global scope: > lyx_gui.C:260: error: parse error before `return' > lyx_gui.

Re: [PATCH][LyX/Mac] Disapearing menus syndrom, part II

2004-06-18 Thread Bennett Helm
On Jun 18, 2004, at 5:40 AM, Jean-Marc Lasgouttes wrote: This patch fixes the contents of the menus in LyX/Mac when the active window is not the main window. In this case, all entries requiring a buffer are disabled. Bennett, could you try it and tell me whether it feels right? Another option would

Re: bitwise operations

2004-06-18 Thread Alfredo Braunstein
Angus Leeming wrote: >> Alternatively, you could as well specify that if you set >> child_redirect_stderr you need *not* to set child_stdout nor >> child_stderr, and have child_stdout=100, child_stderr=010, >> child_redirect=101 > > But if (mode = child_stdout), then (mode & child_redirect) == tr

Re: bitwise operations

2004-06-18 Thread Angus Leeming
Alfredo Braunstein wrote: > Angus Leeming wrote: > >> This works well enough, but I was wondering if, by choosing a >> different value for child_redirect_stderr, I could avoid the run time >> check: >> if (mode & child_redirect_stderr) { >> mode |= child_stdout; >> if (mode & child_stderr) mode ^

Re: bitwise operations

2004-06-18 Thread Alfredo Braunstein
Angus Leeming wrote: > This works well enough, but I was wondering if, by choosing a > different value for child_redirect_stderr, I could avoid the run time > check: > if (mode & child_redirect_stderr) { > mode |= child_stdout; > if (mode & child_stderr) mode ^= child_stderr; > } Alternatively, y

Re: bitwise operations

2004-06-18 Thread Angus Leeming
On Friday 18 June 2004 10:49 am, Helge Hafting wrote: > Angus Leeming wrote: > >Can I choose a value for "d" such that I don't need to modify > > "val" in foo, below? I've tried and failed and so have resorted > > to this runtime modification. > > > >int const a = 1; > >int const b = 2; > >

[PATCH][LyX/Mac] Disapearing menus syndrom, part II

2004-06-18 Thread Jean-Marc Lasgouttes
This patch fixes the contents of the menus in LyX/Mac when the active window is not the main window. In this case, all entries requiring a buffer are disabled. Bennett, could you try it and tell me whether it feels right? Another option would be to disable _everything_ (but leave the menus in pla