Fix forgotten stuff from last change.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4936 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
81555b223d
commit
036282aced
1 changed files with 4 additions and 15 deletions
|
@ -48,17 +48,6 @@
|
|||
|
||||
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Data */
|
||||
/*****************************************************************************/
|
||||
|
||||
|
||||
|
||||
/* The line info slot used */
|
||||
static unsigned LineInfoSlot;
|
||||
|
||||
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Code */
|
||||
/*****************************************************************************/
|
||||
|
@ -114,7 +103,7 @@ void DbgInfoLine (void)
|
|||
* follow, the last line info is terminated.
|
||||
*/
|
||||
if (CurTok.Tok == TOK_SEP) {
|
||||
ClearLineInfo (LineInfoSlot);
|
||||
ClearLineInfo (LI_SLOT_EXT);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -145,7 +134,7 @@ void DbgInfoLine (void)
|
|||
Pos.Line = Line;
|
||||
|
||||
/* Remember the line info */
|
||||
GenLineInfo (LineInfoSlot, &Pos);
|
||||
GenLineInfo (LI_SLOT_EXT, &Pos);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue