Fixed up compiler warnings

git-svn-id: svn://svn.code.sf.net/p/ctags/code/trunk@787 c5d04d22-be80-434c-894e-aa346cc9e8e8
This commit is contained in:
dfishburn 2012-06-20 14:50:22 +00:00
parent 4d616d854f
commit 8c3b2e6ab9
1 changed files with 1 additions and 13 deletions

14
vim.c
View File

@ -625,7 +625,6 @@ static boolean parseVimLine (const unsigned char *line)
static void parseVimFile (const unsigned char *line)
{
boolean readNextLine = TRUE;
// line = readVimLine();
while (line != NULL)
{
@ -639,7 +638,6 @@ static void parseVimFile (const unsigned char *line)
static void parseVimBallFile (const unsigned char *line)
{
boolean readNextLine = TRUE;
vString *fname = vStringNew ();
const unsigned char *cp;
int file_line_count;
@ -667,7 +665,6 @@ static void parseVimBallFile (const unsigned char *line)
}
while (line != NULL)
{
readNextLine = true;
/* Next line should be a filename */
line = readVimLine();
if (line == NULL)
@ -696,7 +693,7 @@ static void parseVimBallFile (const unsigned char *line)
}
else
{
file_line_count = atoi(line);
file_line_count = atoi( (const char *) line );
}
/* Read all lines of the file */
@ -711,15 +708,6 @@ static void parseVimBallFile (const unsigned char *line)
}
vStringDelete (fname);
// while (line != NULL)
// {
// readNextLine = true;
// // readNextLine = parseVimLine(line);
// if ( readNextLine )
// line = readVimLine();
// }
}
static void findVimTags (void)