updated for version 7.3.228
Problem:    "2gj" does not always move to the correct position.
Solution:   Get length of line after moving to a next line. (James Vega)
diff --git a/src/normal.c b/src/normal.c
index 344bd7d..bd6f1f2 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -4533,6 +4533,7 @@
 		}
 		curwin->w_cursor.lnum++;
 		curwin->w_curswant %= width2;
+		linelen = linetabsize(ml_get_curline());
 	    }
 	}
       }