summaryrefslogtreecommitdiffstats
path: root/usr.bin/ctags
diff options
context:
space:
mode:
authormikeh <mikeh@FreeBSD.org>2001-08-16 16:18:14 +0000
committermikeh <mikeh@FreeBSD.org>2001-08-16 16:18:14 +0000
commit1fea34de6288ac952fbe65b1077b28bc0cf7d72f (patch)
tree1a2d1e55ac7913406a984c57d2fb95879758e47c /usr.bin/ctags
parent9e512f5897bf319a27ad1b9e77f493ec109fc81e (diff)
downloadFreeBSD-src-1fea34de6288ac952fbe65b1077b28bc0cf7d72f.zip
FreeBSD-src-1fea34de6288ac952fbe65b1077b28bc0cf7d72f.tar.gz
Print a space between the function name and line number.
PR: bin/10980 MFC after: 2 weeks
Diffstat (limited to 'usr.bin/ctags')
-rw-r--r--usr.bin/ctags/print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/ctags/print.c b/usr.bin/ctags/print.c
index 4e2bc4f..d8d72bf 100644
--- a/usr.bin/ctags/print.c
+++ b/usr.bin/ctags/print.c
@@ -109,7 +109,7 @@ put_entries(node)
printf("%s %s %d\n",
node->entry, node->file, (node->lno + 63) / 64);
else if (xflag)
- printf("%-16s%4d %-16s %s\n",
+ printf("%-16s %4d %-16s %s\n",
node->entry, node->lno, node->file, node->pat);
else
fprintf(outf, "%s\t%s\t%c^%s%c\n",
OpenPOWER on IntegriCloud