commit 9df069cc5f8597147fc25dcf05d725b876035a17
parent 97b904623999d225379e6b35d319f233f89876ed
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date: Tue, 16 Nov 2004 02:20:48 +0000
comment fix
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2100 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/files.c b/src/files.c
@@ -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, " ");