]> git.sur5r.net Git - cc65/commitdiff
Fix forgotten stuff from last change.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 27 Jan 2011 22:23:01 +0000 (22:23 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 27 Jan 2011 22:23:01 +0000 (22:23 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4936 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ca65/dbginfo.c

index 8d53972ef6d2e476c6126a80f074d6175ab966b6..59390cc62ecc1a3f4f9aa6c9d6ed2c396c3a1820 100644 (file)
 
 
 
-/*****************************************************************************/
-/*                                   Data                                    */
-/*****************************************************************************/
-
-
-
-/* The line info slot used */
-static unsigned LineInfoSlot;
-
-
-
 /*****************************************************************************/
 /*                                          Code                                    */
 /*****************************************************************************/
@@ -106,7 +95,7 @@ void DbgInfoFile (void)
 
 void DbgInfoLine (void)
 /* Parse and handle LINE subcommand of the .dbg pseudo instruction */
-{   
+{
     long Line;
     FilePos Pos = STATIC_FILEPOS_INITIALIZER;
 
@@ -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;
     }
 
@@ -141,11 +130,11 @@ void DbgInfoLine (void)
     if (Line < 0) {
        ErrorSkip ("Line number is out of valid range");
        return;
-    }   
+    }
     Pos.Line = Line;
 
     /* Remember the line info */
-    GenLineInfo (LineInfoSlot, &Pos);
+    GenLineInfo (LI_SLOT_EXT, &Pos);
 }