ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* new blank
@ 2014-03-27 19:09 Hans Hagen
  2014-03-28  5:56 ` Vladimir Lomov
  0 siblings, 1 reply; 7+ messages in thread
From: Hans Hagen @ 2014-03-27 19:09 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hi,

this works ok in the beta

\showmakeup

\starttext

\strut \hfill first line
\blank[overlay]
second line \hfill \strut

\ruledvbox {
     \strut \hfill line 1
     \blank[overlay]
     line 2\hfill \strut
     \blank[overlay]
     \strut \hfill line 3\hfill \strut
}

\startitemize[n]
     \item bla
     \item \startitemize[a]
         \item bla $\displaystyle\int^{x^{y^4}}$ \item bla
     \stopitemize
\stopitemize

\stoptext


(somewhat tricky solution for the reported itemize issue)

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: new blank
  2014-03-27 19:09 new blank Hans Hagen
@ 2014-03-28  5:56 ` Vladimir Lomov
  2014-03-28  9:00   ` Hans Hagen
  2014-03-28 11:02   ` Jannik Voges
  0 siblings, 2 replies; 7+ messages in thread
From: Vladimir Lomov @ 2014-03-28  5:56 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hello,
** Hans Hagen [2014-03-27 20:09:55 +0100]:

> Hi,

> this works ok in the beta

> \showmakeup

> \starttext

> \strut \hfill first line
> \blank[overlay]
> second line \hfill \strut

> \ruledvbox {
>     \strut \hfill line 1
>     \blank[overlay]
>     line 2\hfill \strut
>     \blank[overlay]
>     \strut \hfill line 3\hfill \strut
> }

> \startitemize[n]
>     \item bla
>     \item \startitemize[a]
>         \item bla $\displaystyle\int^{x^{y^4}}$ \item bla
>     \stopitemize
> \stopitemize

> \stoptext

This example causes luatex to core dump on my system: Archlinux x86_64 with
up-to-date ConTeXt Suite, though this example works fine on Windows x64.

Seems that linux binaries a bit outdated, I get here:

$ luatex --version | head -n 1
This is LuaTeX, Version beta-0.78.2 (TeX Live 2014/dev) (rev 4746)

while on Windows:

> luatex --version
This is LuaTeX, Version beta-0.79.0 (TeX Live 2013/W32TeX) (rev 4953)
...


For the record, this is message that luatex shows on Linux:

...
luatex: ../../../source/texk/web2c/luatexdir/tex/texnodes.w:830: free_error: Assertion `p> my_prealloc' failed.

mtx-context     | fatal error: no return code, message: luatex: execution interrupted


---
WBR, Vladimir Lomov

-- 
True happiness will be found only in true love.
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: new blank
  2014-03-28  5:56 ` Vladimir Lomov
@ 2014-03-28  9:00   ` Hans Hagen
  2014-03-28  9:02     ` luigi scarso
  2014-03-28 11:02   ` Jannik Voges
  1 sibling, 1 reply; 7+ messages in thread
From: Hans Hagen @ 2014-03-28  9:00 UTC (permalink / raw)
  To: Vladimir Lomov, mailing list for ConTeXt users

On 3/28/2014 6:56 AM, Vladimir Lomov wrote:

> Seems that linux binaries a bit outdated, I get here:
>
> $ luatex --version | head -n 1
> This is LuaTeX, Version beta-0.78.2 (TeX Live 2014/dev) (rev 4746)
>
> while on Windows:
>
>> luatex --version
> This is LuaTeX, Version beta-0.79.0 (TeX Live 2013/W32TeX) (rev 4953)
> ....
>
>
> For the record, this is message that luatex shows on Linux:
>
> ....
> luatex: ../../../source/texk/web2c/luatexdir/tex/texnodes.w:830: free_error: Assertion `p> my_prealloc' failed.
>
> mtx-context     | fatal error: no return code, message: luatex: execution interrupted

luigi, can we see in rev 4746 what's happening there? it might be one of 
these dangling temp pointers (we recently fixed all head.prev pointers 
in the binary)

anyway, time to upgrade your luatex esp as we're going to use new stuff 
pretty soon

Hans

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: new blank
  2014-03-28  9:00   ` Hans Hagen
@ 2014-03-28  9:02     ` luigi scarso
  0 siblings, 0 replies; 7+ messages in thread
From: luigi scarso @ 2014-03-28  9:02 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 903 bytes --]

On Fri, Mar 28, 2014 at 10:00 AM, Hans Hagen <pragma@wxs.nl> wrote:

> On 3/28/2014 6:56 AM, Vladimir Lomov wrote:
>
>  Seems that linux binaries a bit outdated, I get here:
>>
>> $ luatex --version | head -n 1
>> This is LuaTeX, Version beta-0.78.2 (TeX Live 2014/dev) (rev 4746)
>>
>> while on Windows:
>>
>>  luatex --version
>>>
>> This is LuaTeX, Version beta-0.79.0 (TeX Live 2013/W32TeX) (rev 4953)
>> ....
>>
>>
>>
>> For the record, this is message that luatex shows on Linux:
>>
>> ....
>>
>> luatex: ../../../source/texk/web2c/luatexdir/tex/texnodes.w:830:
>> free_error: Assertion `p> my_prealloc' failed.
>>
>> mtx-context     | fatal error: no return code, message: luatex: execution
>> interrupted
>>
>
> luigi, can we see in rev 4746 what's happening there? it might be one of
> these dangling temp pointers (we recently fixed all head.prev pointers in
> the binary)
>
> ok



-- 
luigi

[-- Attachment #1.2: Type: text/html, Size: 1620 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: new blank
  2014-03-28  5:56 ` Vladimir Lomov
  2014-03-28  9:00   ` Hans Hagen
@ 2014-03-28 11:02   ` Jannik Voges
  2014-03-28 14:07     ` Hans Hagen
  1 sibling, 1 reply; 7+ messages in thread
From: Jannik Voges @ 2014-03-28 11:02 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 2169 bytes --]

Hi,


I don’t know whether it helps or not, but the same error occurs under Mac OS X x86_64 too when I compile the example.


Best wishes

Jannik

Am 28.03.2014 um 06:56 schrieb Vladimir Lomov <lomov.vl@gmail.com>:

> Hello,
> ** Hans Hagen [2014-03-27 20:09:55 +0100]:
> 
>> Hi,
> 
>> this works ok in the beta
> 
>> \showmakeup
> 
>> \starttext
> 
>> \strut \hfill first line
>> \blank[overlay]
>> second line \hfill \strut
> 
>> \ruledvbox {
>>    \strut \hfill line 1
>>    \blank[overlay]
>>    line 2\hfill \strut
>>    \blank[overlay]
>>    \strut \hfill line 3\hfill \strut
>> }
> 
>> \startitemize[n]
>>    \item bla
>>    \item \startitemize[a]
>>        \item bla $\displaystyle\int^{x^{y^4}}$ \item bla
>>    \stopitemize
>> \stopitemize
> 
>> \stoptext
> 
> This example causes luatex to core dump on my system: Archlinux x86_64 with
> up-to-date ConTeXt Suite, though this example works fine on Windows x64.
> 
> Seems that linux binaries a bit outdated, I get here:
> 
> $ luatex --version | head -n 1
> This is LuaTeX, Version beta-0.78.2 (TeX Live 2014/dev) (rev 4746)
> 
> while on Windows:
> 
>> luatex --version
> This is LuaTeX, Version beta-0.79.0 (TeX Live 2013/W32TeX) (rev 4953)
> ...
> 
> 
> For the record, this is message that luatex shows on Linux:
> 
> ...
> luatex: ../../../source/texk/web2c/luatexdir/tex/texnodes.w:830: free_error: Assertion `p> my_prealloc' failed.
> 
> mtx-context     | fatal error: no return code, message: luatex: execution interrupted
> 
> 
> ---
> WBR, Vladimir Lomov
> 
> -- 
> True happiness will be found only in true love.
> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an entry to the Wiki!
> 
> maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
> archive  : http://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________


[-- Attachment #1.2: Type: text/html, Size: 3764 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: new blank
  2014-03-28 11:02   ` Jannik Voges
@ 2014-03-28 14:07     ` Hans Hagen
  2014-03-28 22:39       ` Jannik Voges
  0 siblings, 1 reply; 7+ messages in thread
From: Hans Hagen @ 2014-03-28 14:07 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 3/28/2014 12:02 PM, Jannik Voges wrote:
> Hi,
>
>
> I don’t know whether it helps or not, but the same error occurs under
> Mac OS X x86_64 too when I compile the example.

I have a temporary intercept in the beta now .. one of these days the 
new luatex will also be available for linux/osx anyway.

Hans

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: new blank
  2014-03-28 14:07     ` Hans Hagen
@ 2014-03-28 22:39       ` Jannik Voges
  0 siblings, 0 replies; 7+ messages in thread
From: Jannik Voges @ 2014-03-28 22:39 UTC (permalink / raw)
  To: mailing list for ConTeXt users

The newest beta contains luatex 0.79 for OS X and the example compiles without any error. Nice new option and thanks for the fast fix.


Jannik

Am 28.03.2014 um 15:07 schrieb Hans Hagen <pragma@wxs.nl>:

> On 3/28/2014 12:02 PM, Jannik Voges wrote:
>> Hi,
>> 
>> 
>> I don’t know whether it helps or not, but the same error occurs under
>> Mac OS X x86_64 too when I compile the example.
> 
> I have a temporary intercept in the beta now .. one of these days the new luatex will also be available for linux/osx anyway.
> 
> Hans
> 
> -----------------------------------------------------------------
>                                          Hans Hagen | PRAGMA ADE
>              Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
>    tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
>                                             | www.pragma-pod.nl
> -----------------------------------------------------------------
> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an entry to the Wiki!
> 
> maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
> archive  : http://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2014-03-28 22:39 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-27 19:09 new blank Hans Hagen
2014-03-28  5:56 ` Vladimir Lomov
2014-03-28  9:00   ` Hans Hagen
2014-03-28  9:02     ` luigi scarso
2014-03-28 11:02   ` Jannik Voges
2014-03-28 14:07     ` Hans Hagen
2014-03-28 22:39       ` Jannik Voges

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).