ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Taco Hoekwater <taco@elvenkind.com>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>
Cc: Marco <netuse@lavabit.com>
Subject: Re: Return value of context call
Date: Mon, 05 Jul 2010 09:41:39 +0200	[thread overview]
Message-ID: <4C318CB3.4050900@elvenkind.com> (raw)
In-Reply-To: <20100704193936.01ba6247@vorbis>

On 07/04/2010 07:39 PM, Marco wrote:
> Hi,
>
> when there's a mistake in the context code then the context call
> returns »1«. When there's a mistake in the metapost code then the
> context call returns »0«.
>
> This is annoying for me, since I use the return value as indicator for
> my pdf reader to refresh. This seems like a bug to me. Is there a
> workaround?

Like this maybe, this converts metapost errors into a series of tex
errors:

\startluacode
function report_mplib_error (...)
     local v = string.format(...)
     tex.sprint(tex.ctxcatcodes,"\\errmessage{")
     tex.sprint(tex.vrbcatcodes,v)
     tex.print(tex.ctxcatcodes,"}")
end

function metapost.reporterror(result)
     if not result then
         report_mplib_error("mp error: no result object returned")
     elseif result.status > 0 then
         local t, e, l = result.term, result.error, result.log
         if t and t ~= "" then
             report_mplib_error("mp terminal: %s",t)
         end
         if e then
             report_mplib_error("mp error: %s",(e=="" and "?") or e)
         end
         if not t and not e and l then
             metapost.lastlog = metapost.lastlog .. "\n" .. l
             report_mplib_error("mp log: %s",l)
         else
             report_mplib_error("mp error: unknown, no error, terminal 
or log messages")
         end
     else
         return false
     end
     return true
end

\stopluacode
___________________________________________________________________________________
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:[~2010-07-05  7:41 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-07-04 17:39 Marco
2010-07-05  7:41 ` Taco Hoekwater [this message]
2010-07-05 10:49   ` Marco
2010-07-14 12:40   ` Hans Hagen
2010-07-14 14:28     ` Marco

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=4C318CB3.4050900@elvenkind.com \
    --to=taco@elvenkind.com \
    --cc=netuse@lavabit.com \
    --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).