From: Adam Rogoyski Date: Sat, 8 Jul 2000 03:57:16 +0000 (+0000) Subject: - change lines ==> num_lines to avoid name conflict on AIX with xlC. X-Git-Tag: v0.9.13~23 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=1e328fbd723a1c58542d7e10f7a9a4d91006ef26;p=nano.git - change lines ==> num_lines to avoid name conflict on AIX with xlC. git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@91 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/files.c b/files.c index bd24dd3e..de1cab48 100644 --- a/files.c +++ b/files.c @@ -125,7 +125,7 @@ filestruct *read_line(char *buf, filestruct * prev, int *line1ins) int read_file(int fd, char *filename) { - long size, lines = 0, linetemp = 0; + long size, num_lines = 0, linetemp = 0; char input[2]; /* buffer */ char *buf; long i = 0, bufx = 128; @@ -148,7 +148,7 @@ int read_file(int fd, char *filename) linetemp = 0; if (input[0] == '\n') { fileptr = read_line(buf, fileptr, &line1ins); - lines++; + num_lines++; buf[0] = 0; i = 0; } else { @@ -171,13 +171,13 @@ int read_file(int fd, char *filename) /* Did we not get a newline but still have stuff to do? */ if (buf[0]) { fileptr = read_line(buf, fileptr, &line1ins); - lines++; + num_lines++; buf[0] = 0; } /* Did we even GET a file? */ if (totsize == 0) { new_file(); - statusbar(_("Read %d lines"), lines); + statusbar(_("Read %d lines"), num_lines); return 1; } @@ -194,8 +194,8 @@ int read_file(int fd, char *filename) /* Update the edit buffer */ load_file(); } - statusbar(_("Read %d lines"), lines); - totlines += lines; + statusbar(_("Read %d lines"), num_lines); + totlines += num_lines; free(buf); close(fd);