ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Strange error with combination of itemization, footnote and \crlf
@ 2019-10-22 12:16 context
  2019-10-22 21:54 ` Hans Hagen
  0 siblings, 1 reply; 4+ messages in thread
From: context @ 2019-10-22 12:16 UTC (permalink / raw)
  To: ConTeXt

[-- Attachment #1: Type: text/plain, Size: 1016 bytes --]

Hello,

here is a minimal sample which doesn't compile:

----
\starttext
   \startitemize
     \item
       A\footnote{%
         B
         \startitemize
           \item C
         \stopitemize
       }\crlf
       D

     \item E % <<<< This sample compiles when this line is commented (?!)
   \stopitemize
\stoptext
----

The error message is:

"
...
...eta/tex/texmf-context/tex/context/base/mkiv/strc-num.lua:465: attempt 
to index a nil value (local 'd')

  2       \startitemize
  3         \item
  4           A\footnote{%
  5             B
  6             \startitemize
  7               \item C
  8             \stopitemize
  9           }\crlf
10           D
11
12 >>      \item E % <<<< This sample compiles when this line is 
commented
13       \stopitemize
14     \stoptext
15
"

When the "\item E" is commented, the sample compiles successfully.

ConTeXt version: "ConTeXt  ver: 2019.10.11 15:47 MKIV beta  fmt: 
2019.10.16  int: english/english".

Any idea what's going wrong?

Best regards,

Lukas

[-- Attachment #2: t.log --]
[-- Type: text/plain, Size: 1617 bytes --]

open source     > level 1, order 1, name 'd:/Ctx-Beta/tex/texmf-context/tex/context/base/mkiv/cont-yes.mkiv'
system          > 
system          > ConTeXt  ver: 2019.10.11 15:47 MKIV beta  fmt: 2019.10.16  int: english/english
system          > 
system          > 'cont-new.mkiv' loaded
open source     > level 2, order 2, name 'd:/Ctx-Beta/tex/texmf-context/tex/context/base/mkiv/cont-new.mkiv'
system          > beware: some patches loaded from cont-new.mkiv
close source    > level 2, order 2, name 'd:/Ctx-Beta/tex/texmf-context/tex/context/base/mkiv/cont-new.mkiv'

system          > jobfiles > using path: d:\\Lukas\\ConTeXt\\Styles
system          > files > jobname 't', input 'D:\\Lukas\\Jobs\\Chrastany-D5.DSPPS\\SO_201\\~TZ~\\t.mkiv', result 't'
fonts           > latin modern fonts are not preloaded
languages       > language 'en' is active
open source     > level 2, order 3, name 'D://Lukas/Jobs/Chrastany-D5.DSPPS/SO_201/~TZ~/t.mkiv'
fonts           > preloading latin modern fonts (second stage)
fonts           > 'fallback modern-designsize rm 12pt' is loaded

lua error       > lua error on line 12 in file D://Lukas/Jobs/Chrastany-D5.DSPPS/SO_201/~TZ~/t.mkiv:

...eta/tex/texmf-context/tex/context/base/mkiv/strc-num.lua:465: attempt to index a nil value (local 'd')

 2       \startitemize
 3         \item
 4           A\footnote{%
 5             B
 6             \startitemize
 7               \item C
 8             \stopitemize
 9           }\crlf
10           D
11     
12 >>      \item E % <<<< This sample compiles when this line is commented
13       \stopitemize
14     \stoptext
15     


[-- Attachment #3: t.mkiv --]
[-- Type: text/plain, Size: 256 bytes --]

\starttext
  \startitemize
    \item
      A\footnote{%
        B
        \startitemize
          \item C
        \stopitemize
      }\crlf
      D

    \item E % <<<< This sample compiles when this line is commented
  \stopitemize
\stoptext

[-- Attachment #4: t-OK.mkiv --]
[-- Type: text/plain, Size: 257 bytes --]

\starttext
  \startitemize
    \item
      A\footnote{%
        B
        \startitemize
          \item C
        \stopitemize
      }\crlf
      D

    %\item E % <<<< This sample compiles when this line is commented
  \stopitemize
\stoptext

[-- Attachment #5: t-OK.pdf --]
[-- Type: application/pdf, Size: 8109 bytes --]

[-- Attachment #6: Type: text/plain, Size: 493 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: Strange error with combination of itemization, footnote and \crlf
  2019-10-22 12:16 Strange error with combination of itemization, footnote and \crlf context
@ 2019-10-22 21:54 ` Hans Hagen
  2019-10-31 10:43   ` context
  0 siblings, 1 reply; 4+ messages in thread
From: Hans Hagen @ 2019-10-22 21:54 UTC (permalink / raw)
  To: mailing list for ConTeXt users, context

On 10/22/2019 2:16 PM, context@vivaldi.net wrote:
> Hello,
> 
> here is a minimal sample which doesn't compile:
> 
> ----
> \starttext
>    \startitemize
>      \item
>        A\footnote{%
>          B
>          \startitemize
>            \item C
>          \stopitemize
>        }\crlf
>        D
> 
>      \item E % <<<< This sample compiles when this line is commented (?!)
>    \stopitemize
> \stoptext
> ----
> 
> The error message is:
> 
> "
> ...
> ...eta/tex/texmf-context/tex/context/base/mkiv/strc-num.lua:465: attempt 
> to index a nil value (local 'd')
> 
>   2       \startitemize
>   3         \item
>   4           A\footnote{%
>   5             B
>   6             \startitemize
>   7               \item C
>   8             \stopitemize
>   9           }\crlf
> 10           D
> 11
> 12 >>      \item E % <<<< This sample compiles when this line is commented
> 13       \stopitemize
> 14     \stoptext
> 15
> "
> 
> When the "\item E" is commented, the sample compiles successfully.
> 
> ConTeXt version: "ConTeXt  ver: 2019.10.11 15:47 MKIV beta  fmt: 
> 2019.10.16  int: english/english".
> 
> Any idea what's going wrong?
side effect of recent attempt to deal with nesting ... fixed in next beta

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
        tel: 038 477 53 69 | www.pragma-ade.nl | 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: Strange error with combination of itemization, footnote and \crlf
  2019-10-22 21:54 ` Hans Hagen
@ 2019-10-31 10:43   ` context
  2019-11-04 17:31     ` Pablo Rodriguez
  0 siblings, 1 reply; 4+ messages in thread
From: context @ 2019-10-31 10:43 UTC (permalink / raw)
  To: ConTeXt

Hello Hans,

when do you plan to release next beta for ConTeXt with the fixed issue 
spoken bellow?

Normally, one can get beta here:

	http://www.pragma-ade.nl/download-2.htm

but there is still beta from 2019-10-29.

(I'm still using Lua 5.3 version of ConTeXt.)

Or is it enough to re-run "first-setup.bat" from the ConTeXt 
installation directory, which uses "rsync" (points to 
"rsync://contextgarden.net/minimals/setup/mswin/bin/" and launches 
"mtxrun --script ./bin/mtx-update.lua")?

Best regards,

Lukas


On 2019-10-22 23:54, Hans Hagen wrote:
> On 10/22/2019 2:16 PM, context@vivaldi.net wrote:
>> Hello,
>> 
>> here is a minimal sample which doesn't compile:
>> 
>> ----
>> \starttext
>>    \startitemize
>>      \item
>>        A\footnote{%
>>          B
>>          \startitemize
>>            \item C
>>          \stopitemize
>>        }\crlf
>>        D
>> 
>>      \item E % <<<< This sample compiles when this line is commented 
>> (?!)
>>    \stopitemize
>> \stoptext
>> ----
>> 
>> The error message is:
>> 
>> "
>> ...
>> ...eta/tex/texmf-context/tex/context/base/mkiv/strc-num.lua:465: 
>> attempt to index a nil value (local 'd')
>> 
>>   2       \startitemize
>>   3         \item
>>   4           A\footnote{%
>>   5             B
>>   6             \startitemize
>>   7               \item C
>>   8             \stopitemize
>>   9           }\crlf
>> 10           D
>> 11
>> 12 >>      \item E % <<<< This sample compiles when this line is 
>> commented
>> 13       \stopitemize
>> 14     \stoptext
>> 15
>> "
>> 
>> When the "\item E" is commented, the sample compiles successfully.
>> 
>> ConTeXt version: "ConTeXt  ver: 2019.10.11 15:47 MKIV beta  fmt: 
>> 2019.10.16  int: english/english".
>> 
>> Any idea what's going wrong?
> side effect of recent attempt to deal with nesting ... fixed in next 
> beta
> 
> -----------------------------------------------------------------
>                                           Hans Hagen | PRAGMA ADE
>               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
>        tel: 038 477 53 69 | www.pragma-ade.nl | 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: Strange error with combination of itemization, footnote and \crlf
  2019-10-31 10:43   ` context
@ 2019-11-04 17:31     ` Pablo Rodriguez
  0 siblings, 0 replies; 4+ messages in thread
From: Pablo Rodriguez @ 2019-11-04 17:31 UTC (permalink / raw)
  To: ntg-context

On 10/31/19 11:43 AM, context@vivaldi.net wrote:
> Hello Hans,
>
> when do you plan to release next beta for ConTeXt with the fixed issue
> spoken bellow?

Hi Lukas,

I compile your minimal sample using any of these:

  LuaTeX 1.11 7215 + ConTeXt MkIV 2019.10.29 15:00
  LuaTeX 2.00 20190729 + ConTeXt MkIV 2019.10.28 18:57

Does none of them work for you?

Just in case it helps,

Pablo


> On 2019-10-22 23:54, Hans Hagen wrote:
>> On 10/22/2019 2:16 PM, context@vivaldi.net wrote:
>>> Hello,
>>>
>>> here is a minimal sample which doesn't compile:
>>>
>>> ----
>>> \starttext
>>>    \startitemize
>>>      \item
>>>        A\footnote{%
>>>          B
>>>          \startitemize
>>>            \item C
>>>          \stopitemize
>>>        }\crlf
>>>        D
>>>
>>>      \item E % <<<< This sample compiles when this line is commented
>>> (?!)
>>>    \stopitemize
>>> \stoptext
>>> ----
>>>
>>> The error message is:
>>>
>>> "
>>> ...
>>> ...eta/tex/texmf-context/tex/context/base/mkiv/strc-num.lua:465:
>>> attempt to index a nil value (local 'd')
>>>
>>>   2       \startitemize
>>>   3         \item
>>>   4           A\footnote{%
>>>   5             B
>>>   6             \startitemize
>>>   7               \item C
>>>   8             \stopitemize
>>>   9           }\crlf
>>> 10           D
>>> 11
>>> 12 >>      \item E % <<<< This sample compiles when this line is
>>> commented
>>> 13       \stopitemize
>>> 14     \stoptext
>>> 15
>>> "
>>>
>>> When the "\item E" is commented, the sample compiles successfully.
>>>
>>> ConTeXt version: "ConTeXt  ver: 2019.10.11 15:47 MKIV beta  fmt:
>>> 2019.10.16  int: english/english".
>>>
>>> Any idea what's going wrong?
>> side effect of recent attempt to deal with nesting ... fixed in next
>> beta
>>
>> -----------------------------------------------------------------
>>                                           Hans Hagen | PRAGMA ADE
>>               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
>>        tel: 038 477 53 69 | www.pragma-ade.nl | 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://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________
>


--
http://www.ousia.tk
___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

end of thread, other threads:[~2019-11-04 17:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-22 12:16 Strange error with combination of itemization, footnote and \crlf context
2019-10-22 21:54 ` Hans Hagen
2019-10-31 10:43   ` context
2019-11-04 17:31     ` Pablo Rodriguez

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).