aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src')
-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 52e9d291d0e..60a67ff80f8 100644
--- a/lib-src/etags.c
+++ b/lib-src/etags.c
@@ -1895,7 +1895,7 @@ put_entries (np)
1895 put_entries (np->left); 1895 put_entries (np->left);
1896 1896
1897 /* Output this entry */ 1897 /* Output this entry */
1898 if (!CTAGS) 1898#if !CTAGS
1899 { 1899 {
1900 /* Etags mode */ 1900 /* Etags mode */
1901 if (file != np->file 1901 if (file != np->file
@@ -1918,7 +1918,7 @@ put_entries (np)
1918 else 1918 else
1919 fprintf (tagf, "%ld\n", np->cno); 1919 fprintf (tagf, "%ld\n", np->cno);
1920 } 1920 }
1921 else 1921#else
1922 { 1922 {
1923 /* Ctags mode */ 1923 /* Ctags mode */
1924 if (np->name == NULL) 1924 if (np->name == NULL)
@@ -1957,7 +1957,7 @@ put_entries (np)
1957 putc ('\n', tagf); 1957 putc ('\n', tagf);
1958 } 1958 }
1959 } 1959 }
1960 1960#endif
1961 1961
1962 /* Output subentries that follow this one */ 1962 /* Output subentries that follow this one */
1963 put_entries (np->right); 1963 put_entries (np->right);