]> git.wh0rd.org Git - nano.git/commitdiff
in read_line(), rename variable len to buf_len, for consistency
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 19 Jun 2005 19:57:13 +0000 (19:57 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 19 Jun 2005 19:57:13 +0000 (19:57 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2733 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/files.c
src/proto.h

index 1bf4eb44b2c5751664e532f5c41ac211de879ba7..3a00578cb0987ccd53004bd069b5091e967ae5d1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -131,6 +131,7 @@ CVS code -
 - files.c:
   read_line()
        - Rename variable prev to prevnode to avoid confusion. (DLR)
+       - Rename variable len to buf_len, for consistency. (DLR)
   load_open_file()
        - Remove an unneeded clearok(FALSE). (DLR)
   get_next_filename()
index af0205f02dc8263f89ee3879588a4512314cf511..d164db18c5ac0e18fc707210eaf7db2c884ad4e2 100644 (file)
@@ -59,28 +59,28 @@ void new_file(void)
 #endif
 }
 
-/* We make a new line of text from buf.  buf is length len.  If
+/* We make a new line of text from buf.  buf is length buf_len.  If
  * first_line_ins is TRUE, then we put the new line at the top of the
  * file.  Otherwise, we assume prevnode is the last line of the file,
  * and put our line after prevnode. */
 filestruct *read_line(char *buf, filestruct *prevnode, bool
-       *first_line_ins, size_t len)
+       *first_line_ins, size_t buf_len)
 {
     filestruct *fileptr = (filestruct *)nmalloc(sizeof(filestruct));
 
     /* Convert nulls to newlines.  len is the string's real length
      * here. */
-    unsunder(buf, len);
+    unsunder(buf, buf_len);
 
-    assert(strlen(buf) == len);
+    assert(strlen(buf) == buf_len);
 
     fileptr->data = mallocstrcpy(NULL, buf);
 
 #ifndef NANO_SMALL
     /* If it's a DOS file ("\r\n"), and file conversion isn't disabled,
      * strip the '\r' part from fileptr->data. */
-    if (!ISSET(NO_CONVERT) && len > 0 && buf[len - 1] == '\r')
-       fileptr->data[len - 1] = '\0';
+    if (!ISSET(NO_CONVERT) && buf_len > 0 && buf[buf_len - 1] == '\r')
+       fileptr->data[buf_len - 1] = '\0';
 #endif
 
     if (*first_line_ins == TRUE || fileage == NULL) {
index 5382ff24c8fa5f92ec713353861946fc73c5144f..6465bf592343f9fe52c8d312c7b63c1ac194652a 100644 (file)
@@ -251,7 +251,7 @@ void do_uncut_text(void);
 /* Public functions in files.c. */
 void new_file(void);
 filestruct *read_line(char *buf, filestruct *prevnode, bool
-       *first_line_ins, size_t len);
+       *first_line_ins, size_t buf_len);
 void load_file(void);
 void read_file(FILE *f, const char *filename);
 int open_file(const char *filename, bool newfie, FILE **f);