comment fix

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2100 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
David Lawrence Ramsey 2004-11-16 02:20:48 +00:00
parent 97b9046239
commit 9df069cc5f
1 changed files with 2 additions and 2 deletions

View File

@ -2404,8 +2404,8 @@ char *input_tab(char *buf, int place, bool *lastwastab, int *newplace,
/* Print the list of matches */
for (i = 0, col = 0; i < num_matches; i++) {
/* make each filename shown be the same length as the longest
filename, with two spaces at the end */
/* make each filename shown be the same length as the
longest filename, with two spaces at the end */
snprintf(foo, longestname + 1, matches[i]);
while (strlen(foo) < longestname)
strcat(foo, " ");