]> git.wh0rd.org Git - nano.git/commitdiff
in update_line(), remove now-unneeded logic that set the index parameter
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 7 Nov 2005 06:20:02 +0000 (06:20 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 7 Nov 2005 06:20:02 +0000 (06:20 +0000)
to zero if the fileptr parameter didn't point to current

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3097 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/winio.c

index 110aa5e09d2f0cc58cb67d2ee14a9f493bba4a7e..7ff674f3a4bb9fdd784b6f6121e31e04ac399d52 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -76,6 +76,9 @@ CVS code -
 - winio.c:
   nanoget_repaint()
        - Rename parameter inputbuf to buf, for consistency. (DLR)
+  update_line()
+       - Remove now-unneeded logic that set the index parameter to zero
+         if the fileptr parameter didn't point to current. (DLR)
   edit_add()
        - Rename to edit_draw(), and rename parameter yval to line.
          (DLR)
index 3fc4b27ed339eff9d7becfded417e37efb976976..4b7c9f9f7f511f0eb27330c6b2b0c192c90fbf93 100644 (file)
@@ -2541,11 +2541,8 @@ void edit_draw(const filestruct *fileptr, const char *converted, int
 }
 
 /* Just update one line in the edit buffer.  This is basically a wrapper
- * for edit_draw().
- *
- * If fileptr != current, then index is considered 0.  The line will be
- * displayed starting with fileptr->data[index].  Likely args are
- * current_x or 0. */
+ * for edit_draw().  The line will be displayed starting with
+ * fileptr->data[index].  Likely arguments are current_x or zero. */
 void update_line(const filestruct *fileptr, size_t index)
 {
     int line;
@@ -2570,8 +2567,7 @@ void update_line(const filestruct *fileptr, size_t index)
 
     /* Next, convert variables that index the line to their equivalent
      * positions in the expanded line. */
-    index = (fileptr == openfile->current) ? strnlenpt(fileptr->data,
-       index) : 0;
+    index = strnlenpt(fileptr->data, index);
     page_start = get_page_start(index);
 
     /* Expand the line, replacing tabs with spaces, and control