Remove and unused structure member

Based on CTags r769: https://ctags.svn.sourceforge.net/svnroot/ctags@769
This commit is contained in:
Colomban Wendling 2012-07-31 00:31:43 +02:00
parent 13e5c0202a
commit 3a460a2c5b
2 changed files with 0 additions and 3 deletions

View File

@ -277,7 +277,6 @@ extern boolean fileOpen (const char *const fileName, const langType language)
mio_getpos (File.mio, &StartOfLine); mio_getpos (File.mio, &StartOfLine);
mio_getpos (File.mio, &File.filePosition); mio_getpos (File.mio, &File.filePosition);
File.currentLine = NULL; File.currentLine = NULL;
File.language = language;
File.lineNumber = 0L; File.lineNumber = 0L;
File.eof = FALSE; File.eof = FALSE;
File.newLine = TRUE; File.newLine = TRUE;
@ -324,7 +323,6 @@ extern boolean bufferOpen (unsigned char *buffer, int buffer_size,
mio_getpos (File.mio, &StartOfLine); mio_getpos (File.mio, &StartOfLine);
mio_getpos (File.mio, &File.filePosition); mio_getpos (File.mio, &File.filePosition);
File.currentLine = NULL; File.currentLine = NULL;
File.language = language;
File.lineNumber = 0L; File.lineNumber = 0L;
File.eof = FALSE; File.eof = FALSE;
File.newLine = TRUE; File.newLine = TRUE;

View File

@ -79,7 +79,6 @@ typedef struct sInputFile {
int ungetch; /* a single character that was ungotten */ int ungetch; /* a single character that was ungotten */
boolean eof; /* have we reached the end of file? */ boolean eof; /* have we reached the end of file? */
boolean newLine; /* will the next character begin a new line? */ boolean newLine; /* will the next character begin a new line? */
langType language; /* language of input file */
/* Contains data pertaining to the original source file in which the tag /* Contains data pertaining to the original source file in which the tag
* was defined. This may be different from the input file when #line * was defined. This may be different from the input file when #line