# HG changeset patch # User Bram Moolenaar # Date 1614105904 -3600 # Node ID c9849ed1ce0524811dc13cf26a1349d223925a28 # Parent 97041a388b6ed77fc5486e36e1fc5e57d6937868 patch 8.2.2547: "%" command not accurate for big files Commit: https://github.com/vim/vim/commit/2c6553498e790604f50016d8435403523a2576d6 Author: Bram Moolenaar Date: Tue Feb 23 19:32:03 2021 +0100 patch 8.2.2547: "%" command not accurate for big files Problem: "%" command not accurate for big files. Solution: Make it more accurate for files up to 21M lines. (Dominique Pell?, closes #7889) diff --git a/src/normal.c b/src/normal.c --- a/src/normal.c +++ b/src/normal.c @@ -4769,9 +4769,11 @@ nv_percent(cmdarg_T *cap) { cap->oap->motion_type = MLINE; setpcmark(); - // Round up, so CTRL-G will give same value. Watch out for a - // large line count, the line number must not go negative! - if (curbuf->b_ml.ml_line_count > 1000000) + // Round up, so 'normal 100%' always jumps at the line line. + // Beyond 21474836 lines, (ml_line_count * 100 + 99) would + // overflow on 32-bits, so use a formula with less accuracy + // to avoid overflows. + if (curbuf->b_ml.ml_line_count >= 21474836) curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count + 99L) / 100L * cap->count0; else diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2547, +/**/ 2546, /**/ 2545,