Mercurial > vim
comparison src/eval.c @ 21847:fb74a3387694 v8.2.1473
patch 8.2.1473: items in a list given to :const can still be modified
Commit: https://github.com/vim/vim/commit/021bda56710d98c09a6b35610a476ab2dd8c58ad
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Aug 17 21:07:22 2020 +0200
patch 8.2.1473: items in a list given to :const can still be modified
Problem: Items in a list given to :const can still be modified.
Solution: Work like ":lockvar! name" but don't lock referenced items.
Make locking a blob work.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 17 Aug 2020 21:15:03 +0200 |
parents | 2b941fbab4d9 |
children | cd8dafe937ba |
comparison
equal
deleted
inserted
replaced
21846:9b0141b6cfc2 | 21847:fb74a3387694 |
---|---|
1216 if (op != NULL && *op != '=') | 1216 if (op != NULL && *op != '=') |
1217 { | 1217 { |
1218 semsg(_(e_letwrong), op); | 1218 semsg(_(e_letwrong), op); |
1219 return; | 1219 return; |
1220 } | 1220 } |
1221 if (var_check_lock(lp->ll_blob->bv_lock, lp->ll_name, FALSE)) | |
1222 return; | |
1221 | 1223 |
1222 if (lp->ll_range && rettv->v_type == VAR_BLOB) | 1224 if (lp->ll_range && rettv->v_type == VAR_BLOB) |
1223 { | 1225 { |
1224 int il, ir; | 1226 int il, ir; |
1225 | 1227 |