ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Henning Hraban Ramm <hraban@fiee.net>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>
Subject: Re: problem with lua io.lines
Date: Wed, 14 Aug 2013 20:43:41 +0600	[thread overview]
Message-ID: <FEC1F334-EA93-483F-9879-5A5E9894861E@fiee.net> (raw)
In-Reply-To: <E0A12F0F-DFB4-423B-BF2B-FF6CC5995BF6@gmail.com>


Am 2013-08-14 um 20:15 schrieb Wolfgang Schuster <schuster.wolfgang@gmail.com>:

>> Current beta MkIV seems to have a bug in the Lua function io.lines:
>> 
>> for myline in io.lines(myfile) do
>> logs.report(myline)
>> end
>> 
>> "myfile" just contains one line with a number, without return/newline.
>> If the number has more than one digit, I get single digits as "myeline".
> 
> Do you have a minimal working example?

Minimal working yes, but not minimal failing ;-)

This works:

io.output(io.open("myfile.txt","w"))
io.write("123")
io.close()

for myline in io.lines("myfile.txt") do
  print(myline .. "\n")
end

But in my t-lilyfilter.tex where it reads the systems.count files of LilyPond (that contain only the number of note systems that resulted from the included LilyPond code), it fails:

 function thirddata.parselilypondfile(name)
   -- include all systems (note lines)
   -- name is like \LILYTEMP/mainfile-temp-lilypond-21.pdf
   logs.report("LILYPOND","name='" .. name .. "'")
   syco = 0
   for ts in io.lines(string.gsub(name, '%.pdf$', '-systems.count')) do
     syco = ts*1
   end
   
   for nr = 1, syco do
     logs.report("LILYPOND","including system no." .. nr)
     context("\\externalfigure[" .. string.gsub(name, '%.pdf$', '-' .. nr) .. "]")
   end
 end


While I have a single-digit number of systems, it works, but the song of my failing case has 11 lines.

I wouldn't complain if it wouldn't have worked before!


Greetlings, Hraban
___________________________________________________________________________________
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
___________________________________________________________________________________


  reply	other threads:[~2013-08-14 14:43 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-08-14 14:05 Henning Hraban Ramm
2013-08-14 14:15 ` Hans Hagen
2013-08-14 14:32   ` Henning Hraban Ramm
2013-08-14 14:15 ` Wolfgang Schuster
2013-08-14 14:43   ` Henning Hraban Ramm [this message]
2013-08-14 15:00     ` Hans Hagen
2013-08-14 15:12       ` Hans Hagen
2013-08-14 17:02       ` Henning Hraban Ramm

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=FEC1F334-EA93-483F-9879-5A5E9894861E@fiee.net \
    --to=hraban@fiee.net \
    --cc=ntg-context@ntg.nl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).