summaryrefslogtreecommitdiff
path: root/data/vim/patches/8.1.1188
blob: 944400c855b17991c11b80619e4e1cc07037c77a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
To: vim_dev@googlegroups.com
Subject: Patch 8.1.1188
Fcc: outbox
From: Bram Moolenaar <Bram@moolenaar.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
------------

Patch 8.1.1188
Problem:    Not all Vim variables require the v: prefix.
Solution:   When scriptversion is 3 all Vim variables can only be used with
            the v: prefix.  (Ken Takata, closes #4274)
Files:	    src/eval.c, src/ex_cmds2.c, src/testdir/test_eval_stuff.vim,
            runtime/doc/eval.txt


*** ../vim-8.1.1187/src/eval.c	2019-04-05 22:50:35.021737378 +0200
--- src/eval.c	2019-04-20 14:31:43.242750787 +0200
***************
*** 7672,7681 ****
  	    return NULL;
  	*varname = name;
  
! 	/* "version" is "v:version" in all scopes */
! 	hi = hash_find(&compat_hashtab, name);
! 	if (!HASHITEM_EMPTY(hi))
! 	    return &compat_hashtab;
  
  	ht = get_funccal_local_ht();
  	if (ht == NULL)
--- 7672,7685 ----
  	    return NULL;
  	*varname = name;
  
! 	// "version" is "v:version" in all scopes if scriptversion < 3.
! 	// Same for a few other variables marked with VV_COMPAT.
! 	if (current_sctx.sc_version < 3)
! 	{
! 	    hi = hash_find(&compat_hashtab, name);
! 	    if (!HASHITEM_EMPTY(hi))
! 		return &compat_hashtab;
! 	}
  
  	ht = get_funccal_local_ht();
  	if (ht == NULL)
*** ../vim-8.1.1187/src/ex_cmds2.c	2019-04-04 19:06:11.147333162 +0200
--- src/ex_cmds2.c	2019-04-20 14:14:58.164709785 +0200
***************
*** 5127,5133 ****
      nr = getdigits(&eap->arg);
      if (nr == 0 || *eap->arg != NUL)
  	emsg(_(e_invarg));
!     else if (nr > 2)
  	semsg(_("E999: scriptversion not supported: %d"), nr);
      else
  	current_sctx.sc_version = nr;
--- 5127,5133 ----
      nr = getdigits(&eap->arg);
      if (nr == 0 || *eap->arg != NUL)
  	emsg(_(e_invarg));
!     else if (nr > 3)
  	semsg(_("E999: scriptversion not supported: %d"), nr);
      else
  	current_sctx.sc_version = nr;
*** ../vim-8.1.1187/src/testdir/test_eval_stuff.vim	2019-04-04 18:15:05.770857065 +0200
--- src/testdir/test_eval_stuff.vim	2019-04-20 14:36:27.533187729 +0200
***************
*** 154,159 ****
--- 154,175 ----
    endif
  endfunc
  
+ scriptversion 3
+ func Test_vvar_scriptversion3()
+   call assert_fails('echo version', 'E121:')
+   call assert_false(exists('version'))
+   let version = 1
+   call assert_equal(1, version)
+ endfunc
+ 
+ scriptversion 2
+ func Test_vvar_scriptversion2()
+   call assert_true(exists('version'))
+   echo version
+   call assert_fails('let version = 1', 'E46:')
+   call assert_equal(v:version, version)
+ endfunc
+ 
  func Test_scriptversion()
    call writefile(['scriptversion 9'], 'Xversionscript')
    call assert_fails('source Xversionscript', 'E999:')
*** ../vim-8.1.1187/runtime/doc/eval.txt	2019-04-08 20:01:42.873179461 +0200
--- runtime/doc/eval.txt	2019-04-20 14:27:47.172154658 +0200
***************
*** 1668,1674 ****
  		When there are two counts, as in "3d2w", they are multiplied,
  		just like what happens in the command, "d6w" for the example.
  		Also used for evaluating the 'formatexpr' option.
! 		"count" also works, for backwards compatibility.
  
  					*v:count1* *count1-variable*
  v:count1	Just like "v:count", but defaults to one when no count is
--- 1688,1695 ----
  		When there are two counts, as in "3d2w", they are multiplied,
  		just like what happens in the command, "d6w" for the example.
  		Also used for evaluating the 'formatexpr' option.
! 		"count" also works, for backwards compatibility, unless
! 		|scriptversion| is 3 or higher.
  
  					*v:count1* *count1-variable*
  v:count1	Just like "v:count", but defaults to one when no count is
***************
*** 1700,1706 ****
  	:silent! next
  	:if v:errmsg != ""
  	:  ... handle error
! <		"errmsg" also works, for backwards compatibility.
  
  				*v:errors* *errors-variable* *assert-return*
  v:errors	Errors found by assert functions, such as |assert_true()|.
--- 1721,1728 ----
  	:silent! next
  	:if v:errmsg != ""
  	:  ... handle error
! <		"errmsg" also works, for backwards compatibility, unless
! 		|scriptversion| is 3 or higher.
  
  				*v:errors* *errors-variable* *assert-return*
  v:errors	Errors found by assert functions, such as |assert_true()|.
***************
*** 2003,2009 ****
  	:if v:shell_error
  	:  echo 'could not rename "foo" to "bar"!'
  	:endif
! <		"shell_error" also works, for backwards compatibility.
  
  					*v:statusmsg* *statusmsg-variable*
  v:statusmsg	Last given status message.  It's allowed to set this variable.
--- 2025,2032 ----
  	:if v:shell_error
  	:  echo 'could not rename "foo" to "bar"!'
  	:endif
! <		"shell_error" also works, for backwards compatibility, unless
! 		|scriptversion| is 3 or higher.
  
  					*v:statusmsg* *statusmsg-variable*
  v:statusmsg	Last given status message.  It's allowed to set this variable.
***************
*** 2103,2109 ****
  v:this_session	Full filename of the last loaded or saved session file.  See
  		|:mksession|.  It is allowed to set this variable.  When no
  		session file has been saved, this variable is empty.
! 		"this_session" also works, for backwards compatibility.
  
  					*v:throwpoint* *throwpoint-variable*
  v:throwpoint	The point where the exception most recently caught and not
--- 2126,2133 ----
  v:this_session	Full filename of the last loaded or saved session file.  See
  		|:mksession|.  It is allowed to set this variable.  When no
  		session file has been saved, this variable is empty.
! 		"this_session" also works, for backwards compatibility, unless
! 		|scriptversion| is 3 or higher
  
  					*v:throwpoint* *throwpoint-variable*
  v:throwpoint	The point where the exception most recently caught and not
***************
*** 2134,2140 ****
  v:version	Version number of Vim: Major version number times 100 plus
  		minor version number.  Version 5.0 is 500.  Version 5.1 (5.01)
  		is 501.  Read-only.  "version" also works, for backwards
! 		compatibility.
  		Use |has()| to check if a certain patch was included, e.g.: >
  			if has("patch-7.4.123")
  <		Note that patch numbers are specific to the version, thus both
--- 2158,2164 ----
  v:version	Version number of Vim: Major version number times 100 plus
  		minor version number.  Version 5.0 is 500.  Version 5.1 (5.01)
  		is 501.  Read-only.  "version" also works, for backwards
! 		compatibility, unless |scriptversion| is 3 or higher.
  		Use |has()| to check if a certain patch was included, e.g.: >
  			if has("patch-7.4.123")
  <		Note that patch numbers are specific to the version, thus both
*** ../vim-8.1.1187/src/version.c	2019-04-19 23:32:45.193715199 +0200
--- src/version.c	2019-04-20 14:17:05.791957040 +0200
***************
*** 773,774 ****
--- 773,776 ----
  {   /* Add new patch number below this line */
+ /**/
+     1188,
  /**/

-- 
TALL KNIGHT OF NI: Ni!
                 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD

 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///