comparison src/eval.c @ 8971:138824071d4f v7.4.1771

commit https://github.com/vim/vim/commit/21decdd3e6d5ce3469a3c2743de1f4aada388d8c Author: Bram Moolenaar <Bram@vim.org> Date: Fri Apr 22 10:00:58 2016 +0200 patch 7.4.1771 Problem: Warning for unused variable. Solution: Add #ifdef. (John Marriott)
author Christian Brabandt <cb@256bit.org>
date Fri, 22 Apr 2016 10:15:06 +0200
parents c83e2c1e7f2b
children 5cbd81536f27
comparison
equal deleted inserted replaced
8970:35209f2f3ff0 8971:138824071d4f
96 static char *e_missbrac = N_("E111: Missing ']'"); 96 static char *e_missbrac = N_("E111: Missing ']'");
97 static char *e_listarg = N_("E686: Argument of %s must be a List"); 97 static char *e_listarg = N_("E686: Argument of %s must be a List");
98 static char *e_listdictarg = N_("E712: Argument of %s must be a List or Dictionary"); 98 static char *e_listdictarg = N_("E712: Argument of %s must be a List or Dictionary");
99 static char *e_listreq = N_("E714: List required"); 99 static char *e_listreq = N_("E714: List required");
100 static char *e_dictreq = N_("E715: Dictionary required"); 100 static char *e_dictreq = N_("E715: Dictionary required");
101 #ifdef FEAT_QUICKFIX
101 static char *e_stringreq = N_("E928: String required"); 102 static char *e_stringreq = N_("E928: String required");
103 #endif
102 static char *e_toomanyarg = N_("E118: Too many arguments for function: %s"); 104 static char *e_toomanyarg = N_("E118: Too many arguments for function: %s");
103 static char *e_dictkey = N_("E716: Key not present in Dictionary: %s"); 105 static char *e_dictkey = N_("E716: Key not present in Dictionary: %s");
104 static char *e_funcexts = N_("E122: Function %s already exists, add ! to replace it"); 106 static char *e_funcexts = N_("E122: Function %s already exists, add ! to replace it");
105 static char *e_funcdict = N_("E717: Dictionary entry already exists"); 107 static char *e_funcdict = N_("E717: Dictionary entry already exists");
106 static char *e_funcref = N_("E718: Funcref required"); 108 static char *e_funcref = N_("E718: Funcref required");