aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib-src/etags.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c
index 6479e2f12fb..925355f9da0 100644
--- a/lib-src/etags.c
+++ b/lib-src/etags.c
@@ -1707,14 +1707,14 @@ copy_entries_from_old_file (FILE *old_file, const char *old_filename, FILE *out_
1707 break; 1707 break;
1708 } 1708 }
1709 1709
1710 if (line.len < 0 || strneq (line.buffer, "\f", 1))
1711 break;
1712
1710 if (should_copy) 1713 if (should_copy)
1711 { 1714 {
1712 fwrite (line.buffer, line.len, 1, out_file); 1715 fwrite (line.buffer, line.len, 1, out_file);
1713 fputs ("\n", out_file); 1716 fputs ("\n", out_file);
1714 } 1717 }
1715
1716 if (line.len < 0 || strneq (line.buffer, "\f", 1))
1717 break;
1718 } 1718 }
1719 } 1719 }
1720 1720