Remove always-true expressions

This commit is contained in:
Anton Ovchinnikov
2015-03-14 22:12:23 +01:00
committed by Justin M. Keyes
parent 08d2f7b562
commit 9927e99948
2 changed files with 2 additions and 2 deletions

View File

@@ -4252,7 +4252,7 @@ search_line:
* looking for a define). A line starting with "# define"
* is not considered to be a comment line.
*/
if (!define_matched && skip_comments) {
if (skip_comments) {
if ((*line != '#' ||
STRNCMP(skipwhite(line + 1), "define", 6) != 0)
&& get_leader_len(line, NULL, FALSE, TRUE))