Lines Matching refs:fname
14 local function load_messages(fname)
17 local f = assert(io.open(fname, "r"))
39 local function check_message(fname, lineno, id, comment, msgs)
43 print_error("%s:%d: id=%d not found", fname, lineno, id)
62 fname, lineno, id, msg, comment)
66 local function check_file(fname, msgs)
67 local f = assert(io.open(fname, "r"))
78 check_message(fname, lineno, id, comment, msgs)
81 fname, lineno, id, msgs[id])
94 for _, fname in ipairs(arg) do
95 check_file(fname, msgs)