tweaks: remove two unneeded assignments, and improve a comment

Also reshuffle a line, for esthetics.
master
Benno Schulenberg 2019-06-15 14:35:53 +02:00
parent accd17c249
commit 4e14a8a977
1 changed files with 2 additions and 4 deletions

View File

@ -577,9 +577,8 @@ void parse_one_include(char *file, syntaxtype *syntax)
opensyntax = TRUE; opensyntax = TRUE;
lastcolor = NULL; lastcolor = NULL;
/* Parse the included file fully. */ /* Fully parse the given syntax (as it is about to be used). */
parse_rcfile(rcstream, TRUE, FALSE); parse_rcfile(rcstream, TRUE, FALSE);
opensyntax = TRUE;
extra = syntax->augmentations; extra = syntax->augmentations;
@ -599,7 +598,6 @@ void parse_one_include(char *file, syntaxtype *syntax)
free(syntax->filename); free(syntax->filename);
syntax->filename = NULL; syntax->filename = NULL;
opensyntax = FALSE;
} }
/* Expand globs in the passed name, and parse the resultant files. */ /* Expand globs in the passed name, and parse the resultant files. */
@ -1268,8 +1266,8 @@ void parse_rcfile(FILE *rcstream, bool just_syntax, bool intros_only)
opensyntax = FALSE; opensyntax = FALSE;
#endif #endif
free(buffer);
fclose(rcstream); fclose(rcstream);
free(buffer);
lineno = 0; lineno = 0;
return; return;