err.lua

Sun, 13 Sep 2009 22:22:47 +0300

author
Tuomo Valkonen <tuomov@iki.fi>
date
Sun, 13 Sep 2009 22:22:47 +0300
changeset 3
b2df1b3f2c83
parent 2
3975fa5ed630
child 7
038275cd92ed
permissions
-rw-r--r--

Improvements


module("err", package.seeall)

function file_pos(f, pos, e)
    error(string.format("%s:%d: %s", f, pos, e))
end

function file(f, e)
    error(string.format("%s %s", f, e))
end

mercurial