summaryrefslogtreecommitdiff
path: root/ldump.c
diff options
context:
space:
mode:
Diffstat (limited to 'ldump.c')
-rw-r--r--ldump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldump.c b/ldump.c
index eff2c85c..f08277d3 100644
--- a/ldump.c
+++ b/ldump.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldump.c,v 1.13 2005/11/01 17:04:55 lhf Exp lhf $ 2** $Id: ldump.c,v 1.15 2006/02/16 15:53:49 lhf Exp $
3** save precompiled Lua chunks 3** save precompiled Lua chunks
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -128,7 +128,7 @@ static void DumpDebug(const Proto* f, DumpState* D)
128 128
129static void DumpFunction(const Proto* f, const TString* p, DumpState* D) 129static void DumpFunction(const Proto* f, const TString* p, DumpState* D)
130{ 130{
131 DumpString((f->source==p) ? NULL : f->source,D); 131 DumpString((f->source==p || D->strip) ? NULL : f->source,D);
132 DumpInt(f->linedefined,D); 132 DumpInt(f->linedefined,D);
133 DumpInt(f->lastlinedefined,D); 133 DumpInt(f->lastlinedefined,D);
134 DumpChar(f->nups,D); 134 DumpChar(f->nups,D);