comparison src/vim.h @ 10912:fd1760f8c215 v8.0.0345

patch 8.0.0345: islocked('d.changedtick') does not work commit https://github.com/vim/vim/commit/3a257737726ba42980bf38ec9a0c80944756af24 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Feb 21 20:47:13 2017 +0100 patch 8.0.0345: islocked('d.changedtick') does not work Problem: islocked('d.changedtick') does not work. Solution: Make it work.
author Christian Brabandt <cb@256bit.org>
date Tue, 21 Feb 2017 21:00:04 +0100
parents c96534dd2b2f
children 3b0924353019
comparison
equal deleted inserted replaced
10911:09f200404633 10912:fd1760f8c215
2472 /* Values for trans_function_name() argument: */ 2472 /* Values for trans_function_name() argument: */
2473 #define TFN_INT 1 /* internal function name OK */ 2473 #define TFN_INT 1 /* internal function name OK */
2474 #define TFN_QUIET 2 /* no error messages */ 2474 #define TFN_QUIET 2 /* no error messages */
2475 #define TFN_NO_AUTOLOAD 4 /* do not use script autoloading */ 2475 #define TFN_NO_AUTOLOAD 4 /* do not use script autoloading */
2476 #define TFN_NO_DEREF 8 /* do not dereference a Funcref */ 2476 #define TFN_NO_DEREF 8 /* do not dereference a Funcref */
2477 #define TFN_READ_ONLY 16 /* will not change the var */
2477 2478
2478 /* Values for get_lval() flags argument: */ 2479 /* Values for get_lval() flags argument: */
2479 #define GLV_QUIET TFN_QUIET /* no error messages */ 2480 #define GLV_QUIET TFN_QUIET /* no error messages */
2480 #define GLV_NO_AUTOLOAD TFN_NO_AUTOLOAD /* do not use script autoloading */ 2481 #define GLV_NO_AUTOLOAD TFN_NO_AUTOLOAD /* do not use script autoloading */
2482 #define GLV_READ_ONLY TFN_READ_ONLY /* will not change the var */
2481 2483
2482 #define DO_NOT_FREE_CNT 99999 /* refcount for dict or list that should not 2484 #define DO_NOT_FREE_CNT 99999 /* refcount for dict or list that should not
2483 be freed. */ 2485 be freed. */
2484 2486
2485 /* errors for when calling a function */ 2487 /* errors for when calling a function */