# HG changeset patch # User vimboss # Date 1109543807 0 # Node ID 54f0f39bdf018efff48e70b72e773ad4ed0e4ad0 # Parent 8c60f65311fa6358488f671adc226950c18a993d updated for version 7.0053 diff --git a/runtime/doc/map.txt b/runtime/doc/map.txt --- a/runtime/doc/map.txt +++ b/runtime/doc/map.txt @@ -1,4 +1,4 @@ -*map.txt* For Vim version 7.0aa. Last change: 2004 Dec 29 +*map.txt* For Vim version 7.0aa. Last change: 2005 Feb 27 VIM REFERENCE MANUAL by Bram Moolenaar @@ -972,7 +972,7 @@ argument (-count=N, like the |:Next| com -range=N A count (default N) which is specified in the line number position (like |:split|) -count=N A count (default N) which is specified either in the line - number position, or as an initial argument (like |:Next|) + number position, or as an initial argument (like |:Next|). Specifying -count (without a default) acts like -count=0 Note that -range=N and -count=N are mutually exclusive - only one should be diff --git a/src/ex_docmd.c b/src/ex_docmd.c --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -5236,7 +5236,7 @@ invalid_count: } else if (STRNICMP(attr, "count", attrlen) == 0) { - *argt |= (COUNT | ZEROR | NOTADR); + *argt |= (COUNT | ZEROR | RANGE | NOTADR); if (val != NULL) {