Re: Crash in mathed with aligned in align

2019-07-26 Thread Andrew Parsloe
On 26/07/2019 8:41 PM, Richard Kimberly Heck wrote: On 7/26/19 12:46 AM, Daniel wrote: On 2019-07-25 23:40, Andrew Parsloe wrote: I can create a crash by trying to delete the final column in the following construction: \begin{align*} \begin{aligned}\end{aligned} \\ \end{align*} To

Re: Crash in mathed with aligned in align

2019-07-26 Thread Richard Kimberly Heck
On 7/26/19 12:46 AM, Daniel wrote: > On 2019-07-25 23:40, Andrew Parsloe wrote: >> I can create a crash by trying to delete the final column in the >> following construction: >> >> >> \begin{align*} >> >> \begin{aligned}\end{aligned} >> >> \\ >> >> \end{align*} >> >> >> To create: >> >> >> 1.

Re: Crash in mathed with aligned in align

2019-07-25 Thread Daniel
On 2019-07-25 23:40, Andrew Parsloe wrote: I can create a crash by trying to delete the final column in the following construction: \begin{align*} \begin{aligned}\end{aligned} \\ \end{align*} To create: 1. Ctrl+Shift+M to create a display math equation. 2. Ctrl+Return to create an

Crash in mathed with aligned in align

2019-07-25 Thread Andrew Parsloe
I can create a crash by trying to delete the final column in the following construction: \begin{align*} \begin{aligned}\end{aligned} \\ \end{align*} To create: 1. Ctrl+Shift+M to create a display math equation. 2. Ctrl+Return to create an align* environment 3. Insert > Math > Aligned

Re: [PATCH] Fix crash with mathed

2006-10-19 Thread Michael Gerz
Abdelrazak Younes wrote: I've done enough cleanups for 1.5 ;-) Does it mean that you won't do any other major cleanups for 1.5? Actually, I wondering about what needs to be done/is intended to be done for 1.5 besides adding unicode support. Isn't it time to set up some kind of roadmap?

Re: [PATCH] Fix crash with mathed

2006-10-19 Thread Abdelrazak Younes
Michael Gerz wrote: Abdelrazak Younes wrote: I've done enough cleanups for 1.5 ;-) Does it mean that you won't do any other major cleanups for 1.5? I guess so yes. Well, unless 1.5 is still far away that is :-) But if those guys in Denmark fix all remaining issues about unicode, chances

Re: [PATCH] Fix crash with mathed

2006-10-19 Thread Michael Gerz
Abdelrazak Younes wrote: I've done enough cleanups for 1.5 ;-) Does it mean that you won't do any other major cleanups for 1.5? Actually, I wondering about what needs to be done/is intended to be done for 1.5 besides adding unicode support. Isn't it time to set up some kind of roadmap?

Re: [PATCH] Fix crash with mathed

2006-10-19 Thread Abdelrazak Younes
Michael Gerz wrote: Abdelrazak Younes wrote: I've done enough cleanups for 1.5 ;-) Does it mean that you won't do any other major cleanups for 1.5? I guess so yes. Well, unless 1.5 is still far away that is :-) But if those guys in Denmark fix all remaining issues about unicode, chances

Re: [PATCH] Fix crash with mathed

2006-10-18 Thread Jean-Marc Lasgouttes
Abdelrazak == Abdelrazak Younes [EMAIL PROTECTED] writes: Abdelrazak Hi, This crash was due to an invalid CursorSlice::text() Abdelrazak null pointer accessed in InsetMathNest::cursorPos(): Abdelrazak CoordCache coord_cache = Abdelrazak sl.text()-bv()-coordCache(); Abdelrazak As you can

Re: [PATCH] Fix crash with mathed

2006-10-18 Thread Abdelrazak Younes
Jean-Marc Lasgouttes wrote: Abdelrazak == Abdelrazak Younes [EMAIL PROTECTED] writes: Abdelrazak Hi, This crash was due to an invalid CursorSlice::text() Abdelrazak null pointer accessed in InsetMathNest::cursorPos(): Abdelrazak CoordCache coord_cache = Abdelrazak

Re: [PATCH] Fix crash with mathed

2006-10-18 Thread Abdelrazak Younes
Georg Baum wrote: Am Dienstag, 17. Oktober 2006 17:06 schrieb Abdelrazak Younes: Hi, This crash was due to an invalid CursorSlice::text() null pointer accessed in InsetMathNest::cursorPos(): CoordCache coord_cache = sl.text()-bv()-coordCache(); As you can see, I used this

Re: [PATCH] Fix crash with mathed

2006-10-18 Thread Jean-Marc Lasgouttes
Abdelrazak == Abdelrazak Younes [EMAIL PROTECTED] writes: Abdelrazak Nothing wrong per see. But Andre (and I think I agree with Abdelrazak him) thinks that we should decorrelate the model and the Abdelrazak view. Passing a BufferView (the view) and a DocIterator Abdelrazak (the model independent

Re: [PATCH] Fix crash with mathed

2006-10-18 Thread Abdelrazak Younes
Jean-Marc Lasgouttes wrote: Abdelrazak == Abdelrazak Younes [EMAIL PROTECTED] writes: Abdelrazak Nothing wrong per see. But Andre (and I think I agree with Abdelrazak him) thinks that we should decorrelate the model and the Abdelrazak view. Passing a BufferView (the view) and a DocIterator

Re: [PATCH] Fix crash with mathed

2006-10-18 Thread Jean-Marc Lasgouttes
Abdelrazak == Abdelrazak Younes [EMAIL PROTECTED] writes: In the new getPos, you pass 3 parameters that all should com from one cursor. This is wrong, especially since the method os useful to find the position of a cursor. Abdelrazak IMHO, what is wrong really is this cursorPos() method.

Re: [PATCH] Fix crash with mathed

2006-10-18 Thread Abdelrazak Younes
Jean-Marc Lasgouttes wrote: Abdelrazak == Abdelrazak Younes [EMAIL PROTECTED] writes: In the new getPos, you pass 3 parameters that all should com from one cursor. This is wrong, especially since the method os useful to find the position of a cursor. Abdelrazak IMHO, what is wrong really is

Re: [PATCH] Fix crash with mathed

2006-10-18 Thread Jean-Marc Lasgouttes
Abdelrazak == Abdelrazak Younes [EMAIL PROTECTED] writes: I agree that these things should be moved out of insets. Abdelrazak I've done enough cleanups for 1.5 ;-) We'll see :) JMarc

Re: [PATCH] Fix crash with mathed

2006-10-18 Thread Jean-Marc Lasgouttes
> "Abdelrazak" == Abdelrazak Younes <[EMAIL PROTECTED]> writes: Abdelrazak> Hi, This crash was due to an invalid CursorSlice::text() Abdelrazak> null pointer accessed in InsetMathNest::cursorPos(): Abdelrazak> CoordCache & coord_cache = Abdelrazak> sl.text()->bv()->coordCache();

Re: [PATCH] Fix crash with mathed

2006-10-18 Thread Abdelrazak Younes
Jean-Marc Lasgouttes wrote: "Abdelrazak" == Abdelrazak Younes <[EMAIL PROTECTED]> writes: Abdelrazak> Hi, This crash was due to an invalid CursorSlice::text() Abdelrazak> null pointer accessed in InsetMathNest::cursorPos(): Abdelrazak> CoordCache & coord_cache = Abdelrazak>

Re: [PATCH] Fix crash with mathed

2006-10-18 Thread Abdelrazak Younes
Georg Baum wrote: Am Dienstag, 17. Oktober 2006 17:06 schrieb Abdelrazak Younes: Hi, This crash was due to an invalid CursorSlice::text() null pointer accessed in InsetMathNest::cursorPos(): CoordCache & coord_cache = sl.text()->bv()->coordCache(); As you can see, I used this

Re: [PATCH] Fix crash with mathed

2006-10-18 Thread Jean-Marc Lasgouttes
> "Abdelrazak" == Abdelrazak Younes <[EMAIL PROTECTED]> writes: Abdelrazak> Nothing wrong per see. But Andre (and I think I agree with Abdelrazak> him) thinks that we should decorrelate the model and the Abdelrazak> view. Passing a BufferView (the view) and a DocIterator Abdelrazak> (the

Re: [PATCH] Fix crash with mathed

2006-10-18 Thread Abdelrazak Younes
Jean-Marc Lasgouttes wrote: "Abdelrazak" == Abdelrazak Younes <[EMAIL PROTECTED]> writes: Abdelrazak> Nothing wrong per see. But Andre (and I think I agree with Abdelrazak> him) thinks that we should decorrelate the model and the Abdelrazak> view. Passing a BufferView (the view) and a

Re: [PATCH] Fix crash with mathed

2006-10-18 Thread Jean-Marc Lasgouttes
> "Abdelrazak" == Abdelrazak Younes <[EMAIL PROTECTED]> writes: >> In the new getPos, you pass 3 parameters that all should com from >> one cursor. This is wrong, especially since the method os useful to >> find the position of a cursor. Abdelrazak> IMHO, what is wrong really is this

Re: [PATCH] Fix crash with mathed

2006-10-18 Thread Abdelrazak Younes
Jean-Marc Lasgouttes wrote: "Abdelrazak" == Abdelrazak Younes <[EMAIL PROTECTED]> writes: In the new getPos, you pass 3 parameters that all should com from one cursor. This is wrong, especially since the method os useful to find the position of a cursor. Abdelrazak> IMHO, what is wrong

Re: [PATCH] Fix crash with mathed

2006-10-18 Thread Jean-Marc Lasgouttes
> "Abdelrazak" == Abdelrazak Younes <[EMAIL PROTECTED]> writes: >> I agree that these things should be moved out of insets. Abdelrazak> I've done enough cleanups for 1.5 ;-) We'll see :) JMarc

[PATCH] Fix crash with mathed

2006-10-17 Thread Abdelrazak Younes
Hi, This crash was due to an invalid CursorSlice::text() null pointer accessed in InsetMathNest::cursorPos(): CoordCache coord_cache = sl.text()-bv()-coordCache(); As you can see, I used this indirection to access the BufferView::CoordCache(). Bad luck, the passed CursorSlice was

Re: [PATCH] Fix crash with mathed

2006-10-17 Thread Abdelrazak Younes
Abdelrazak Younes wrote: Hi, This crash was due to an invalid CursorSlice::text() null pointer accessed in InsetMathNest::cursorPos(): CoordCache coord_cache = sl.text()-bv()-coordCache(); As you can see, I used this indirection to access the BufferView::CoordCache(). Bad luck, the

Re: [PATCH] Fix crash with mathed

2006-10-17 Thread Georg Baum
Am Dienstag, 17. Oktober 2006 17:06 schrieb Abdelrazak Younes: Hi, This crash was due to an invalid CursorSlice::text() null pointer accessed in InsetMathNest::cursorPos(): CoordCache coord_cache = sl.text()-bv()-coordCache(); As you can see, I used this indirection to access

[PATCH] Fix crash with mathed

2006-10-17 Thread Abdelrazak Younes
Hi, This crash was due to an invalid CursorSlice::text() null pointer accessed in InsetMathNest::cursorPos(): CoordCache & coord_cache = sl.text()->bv()->coordCache(); As you can see, I used this indirection to access the BufferView::CoordCache(). Bad luck, the passed CursorSlice

Re: [PATCH] Fix crash with mathed

2006-10-17 Thread Abdelrazak Younes
Abdelrazak Younes wrote: Hi, This crash was due to an invalid CursorSlice::text() null pointer accessed in InsetMathNest::cursorPos(): CoordCache & coord_cache = sl.text()->bv()->coordCache(); As you can see, I used this indirection to access the BufferView::CoordCache(). Bad luck, the

Re: [PATCH] Fix crash with mathed

2006-10-17 Thread Georg Baum
Am Dienstag, 17. Oktober 2006 17:06 schrieb Abdelrazak Younes: > Hi, > > This crash was due to an invalid CursorSlice::text() null pointer > accessed in InsetMathNest::cursorPos(): > > CoordCache & coord_cache = sl.text()->bv()->coordCache(); > > As you can see, I used this indirection

Re: Crash with mathed

2004-01-16 Thread Andre Poenitz
On Fri, Jan 16, 2004 at 02:23:24PM +0900, Rob Lahaye wrote: Current CVS with xforms crashes as follows: Start LyX File-New Insert Math lyx: SIGSEGV signal caught (Sorry can't make a backtrace at this stage). Never mind. I am aware of it. Andre' -- Those who desire to give up

Re: Crash with mathed

2004-01-16 Thread Andre Poenitz
On Fri, Jan 16, 2004 at 02:23:24PM +0900, Rob Lahaye wrote: > > Current CVS with xforms crashes as follows: > > Start LyX > File->New > Insert Math > > lyx: SIGSEGV signal caught > > > (Sorry can't make a backtrace at this stage). Never mind. I am aware of it. Andre' -- Those who desire

Crash with mathed

2004-01-15 Thread Rob Lahaye
Hi, Current CVS with xforms crashes as follows: Start LyX File-New Insert Math lyx: SIGSEGV signal caught (Sorry can't make a backtrace at this stage). Regards, Rob.

Crash with mathed

2004-01-15 Thread Rob Lahaye
Hi, Current CVS with xforms crashes as follows: Start LyX File->New Insert Math lyx: SIGSEGV signal caught (Sorry can't make a backtrace at this stage). Regards, Rob.

Crash in mathed

2002-05-07 Thread Dekel Tsur
When reading the attached file, mathed crashes. #LyX 1.2 created this file. For more info see http://www.lyx.org/ \lyxformat 220 \textclass article \language american \inputencoding default \fontscheme default \graphics default \paperfontsize 12 \spacing single \papersize Default \paperpackage

Re: Crash in mathed

2002-05-07 Thread Herbert Voss
Dekel Tsur wrote: When reading the attached file, mathed crashes. no problem here with latest cvs Herbert -- http://www.lyx.org/help/

Re: Crash in mathed

2002-05-07 Thread Andre Poenitz
On Tue, May 07, 2002 at 05:07:55PM +0300, Dekel Tsur wrote: When reading the attached file, mathed crashes. Mine works. Andre' -- Those who desire to give up Freedom in order to gain Security, will not have, nor do they deserve, either one. (T. Jefferson)

Re: Crash in mathed

2002-05-07 Thread Dekel Tsur
On Tue, May 07, 2002 at 04:45:16PM +0200, Andre Poenitz wrote: On Tue, May 07, 2002 at 05:07:55PM +0300, Dekel Tsur wrote: When reading the attached file, mathed crashes. Mine works. Try compiling --with-included-string

Re: Crash in mathed

2002-05-07 Thread Andre Poenitz
On Tue, May 07, 2002 at 06:36:03PM +0300, Dekel Tsur wrote: Try compiling --with-included-string Even then. Could you try to get down to the source of that crash? Andre' -- Those who desire to give up Freedom in order to gain Security, will not have, nor do they deserve, either one. (T.

Crash in mathed

2002-05-07 Thread Dekel Tsur
When reading the attached file, mathed crashes. #LyX 1.2 created this file. For more info see http://www.lyx.org/ \lyxformat 220 \textclass article \language american \inputencoding default \fontscheme default \graphics default \paperfontsize 12 \spacing single \papersize Default \paperpackage

Re: Crash in mathed

2002-05-07 Thread Herbert Voss
Dekel Tsur wrote: > When reading the attached file, mathed crashes. no problem here with latest cvs Herbert -- http://www.lyx.org/help/

Re: Crash in mathed

2002-05-07 Thread Andre Poenitz
On Tue, May 07, 2002 at 05:07:55PM +0300, Dekel Tsur wrote: > When reading the attached file, mathed crashes. Mine works. Andre' -- Those who desire to give up Freedom in order to gain Security, will not have, nor do they deserve, either one. (T. Jefferson)

Re: Crash in mathed

2002-05-07 Thread Dekel Tsur
On Tue, May 07, 2002 at 04:45:16PM +0200, Andre Poenitz wrote: > On Tue, May 07, 2002 at 05:07:55PM +0300, Dekel Tsur wrote: > > When reading the attached file, mathed crashes. > > Mine works. > Try compiling --with-included-string

Re: Crash in mathed

2002-05-07 Thread Andre Poenitz
On Tue, May 07, 2002 at 06:36:03PM +0300, Dekel Tsur wrote: > Try compiling --with-included-string Even then. Could you try to get down to the source of that crash? Andre' -- Those who desire to give up Freedom in order to gain Security, will not have, nor do they deserve, either one. (T.

LyX 1.0.2 crash in mathed

1999-05-11 Thread Martin Vonwald
Hi there Just found a little bug in LyX 1.0.2 and want to let you know of it. Thanks for your great work, Martin Here's the information how to reproduce it: HOW TO CRASH IT === !All the keyboard shortcuts are for the german version! * New doc, doesn't matter which class *

LyX 1.0.2 crash in mathed

1999-05-11 Thread Martin Vonwald
Hi there Just found a little bug in LyX 1.0.2 and want to let you know of it. Thanks for your great work, Martin Here's the information how to reproduce it: HOW TO CRASH IT === !All the keyboard shortcuts are for the german version! * New doc, doesn't matter which class *