Home
last modified time | relevance | path

Searched refs:noref (Results 1 – 3 of 3) sorted by relevance

/vim-8.2.3635/src/
H A Devalfunc.c3144 varnumber_T noref = 0; in f_deepcopy() local
3152 noref = tv_get_bool_chk(&argvars[1], NULL); in f_deepcopy()
3153 if (noref < 0 || noref > 1) in f_deepcopy()
3154 semsg(_(e_using_number_as_bool_nr), noref); in f_deepcopy()
3158 item_copy(&argvars[0], rettv, TRUE, noref == 0 ? copyID : 0); in f_deepcopy()
/vim-8.2.3635/src/testdir/
H A Dtest_listdict.vim506 " Nasty: deepcopy() dict that refers to itself (fails when noref used)
/vim-8.2.3635/runtime/doc/
H A Deval.txt2597 deepcopy({expr} [, {noref}]) any make a full copy of {expr}
4178 deepcopy({expr} [, {noref}]) *deepcopy()* *E698*
4189 When {noref} is omitted or zero a contained |List| or
4191 this single copy. With {noref} set to 1 every occurrence of a
4197 {noref} set to 1 will fail.