1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#! /bin/sh /usr/share/dpatch/dpatch-run
## test.dpatch by Enrico Tassi <gareuselesinge@debian.org>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: No description.
@DPATCH@
diff -urNad trunk~/test.lua trunk/test.lua
--- trunk~/test.lua 2004-12-02 18:39:36.000000000 +0100
+++ trunk/test.lua 2007-07-21 18:54:36.000000000 +0200
@@ -4,9 +4,11 @@
-- $Id: test.lua,v 1.3 2004/03/24 19:27:38 tomas Exp $
---------------------------------------------------------------------
-require"lxp/lom"
+require"lxp.lom"
require"soap"
+local lom = lxp.lom
+
function table.equal (t1, t2)
assert (type(t1) == type(t2), string.format ("%s (%s) ~= %s (%s)", type(t1),
tostring(t1), type(t2), tostring(t2)))
|