ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Passing macro parameters to lua
@ 2013-08-05 20:53 Matt Gushee
  2013-08-05 21:00 ` Hans Hagen
  0 siblings, 1 reply; 3+ messages in thread
From: Matt Gushee @ 2013-08-05 20:53 UTC (permalink / raw)
  To: ConTeXt users' mailing list

Hello, good people--

I've encountered what appears to be a bug in either the TeX->Lua
interface or the documentation thereof (I have the latest stable
ConTeXt standalone from contextgarden.net).

I'm trying to create a macro that will insert different text depending
on whether one of the arguments is empty or not. My initial test
implementation (following the wiki section entitled "Passing arguments
and buffers: ConTeXt commands that hook into Lua") looked like this:

\startluacode
    userdata = userdata or {}

    function userdata.empty_or_not(str)
        if str == "" or str == nil then
            context("{\\sc Empty}")
        else
            context(str)
        end
    end
\stopluacode

\def\emptyOrNot#1{%
    \ctxlua{userdata.empty_or_not(#1)}%
}

\starttext

    \emptyOrNot{Amazing Text!}

    \emptyOrNot{}

\stoptext

This did not work. I determined that even when I passed a non-empty
string, the Lua interpreter detected it as nil. It turns out the fix
was simple--I had to quote the string, as follows.

\def\emptyOrNot#1{%
    \ctxlua{userdata.empty_or_not("#1")}%
}

It took me a while to figure that out, though, since the wiki example
does not show quotes.

--
Matt Gushee
___________________________________________________________________________________
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] 3+ messages in thread

end of thread, other threads:[~2013-08-05 21:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-08-05 20:53 Passing macro parameters to lua Matt Gushee
2013-08-05 21:00 ` Hans Hagen
2013-08-05 21:35   ` Sietse Brouwer

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