summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-01-08 16:11:57 +0000
committerBram Moolenaar <Bram@vim.org>2005-01-08 16:11:57 +0000
commite49b69a091e72ce1b1a5e7091ebf2ebddd795e6d (patch)
treed07e2e964f1ff37dca5be0e4289ec246faa57650
parent13065c4e70f9e227e50513e8ffa4a3e79005babf (diff)
downloadvim-git-7.0034.tar.gz
updated for version 7.0034v7.0034
-rw-r--r--runtime/doc/quickfix.txt4
-rw-r--r--runtime/doc/todo.txt6
-rw-r--r--src/eval.c82
3 files changed, 62 insertions, 30 deletions
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt
index 4aeafdd08..0745aff31 100644
--- a/runtime/doc/quickfix.txt
+++ b/runtime/doc/quickfix.txt
@@ -1,4 +1,4 @@
-*quickfix.txt* For Vim version 7.0aa. Last change: 2004 Dec 28
+*quickfix.txt* For Vim version 7.0aa. Last change: 2005 Jan 08
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -292,7 +292,7 @@ advantages are:
5.1 using Vim's internal grep
- *:vim* *:vimgrep*
+ *:vim* *:vimgrep* *E682* *E683*
:vim[grep][!] /{pattern}/ {file} ...
Search for {pattern} in the files {file} ... and set
the error list to the matches.
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index 3f2925914..e1f4d8c9e 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -1,4 +1,4 @@
-*todo.txt* For Vim version 7.0aa. Last change: 2005 Jan 07
+*todo.txt* For Vim version 7.0aa. Last change: 2005 Jan 08
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -30,9 +30,7 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
*known-bugs*
-------------------- Known bugs and current work -----------------------
-List data type:
-- Write docs for using Lists.
-- Fix the error numbers E999 in eval.c.
+Add mouse patch from Marcin Dalecki.
Use 'ignorecase' for ":vimgrep"?
diff --git a/src/eval.c b/src/eval.c
index e28e5d677..ba4fad4ea 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -105,11 +105,11 @@ typedef struct listvar_S listvar;
#define VAR_LIST_MAXNEST 100 /* maximum nesting of lists */
static char *e_letunexp = N_("E18: Unexpected characters in :let");
-static char *e_listidx = N_("E999: list index out of range: %ld");
+static char *e_listidx = N_("E684: list index out of range: %ld");
static char *e_undefvar = N_("E121: Undefined variable: %s");
static char *e_missbrac = N_("E111: Missing ']'");
-static char *e_intern2 = N_("E999: Internal error: %s");
-static char *e_listarg = N_("E999: Argument of %s must be a list");
+static char *e_intern2 = N_("E685: Internal error: %s");
+static char *e_listarg = N_("E686: Argument of %s must be a list");
/*
* All user-defined global variables are stored in "variables".
@@ -369,6 +369,7 @@ static void f_delete __ARGS((typeval *argvars, typeval *rettv));
static void f_did_filetype __ARGS((typeval *argvars, typeval *rettv));
static void f_diff_filler __ARGS((typeval *argvars, typeval *rettv));
static void f_diff_hlID __ARGS((typeval *argvars, typeval *rettv));
+static void f_empty __ARGS((typeval *argvars, typeval *rettv));
static void f_escape __ARGS((typeval *argvars, typeval *rettv));
static void f_eventhandler __ARGS((typeval *argvars, typeval *rettv));
static void f_executable __ARGS((typeval *argvars, typeval *rettv));
@@ -1141,12 +1142,12 @@ ex_let_vars(arg_start, tv, copy, semicolon, var_count, nextchars)
i = list_len(l);
if (semicolon == 0 && var_count < i)
{
- EMSG(_("E999: Less targets than List items"));
+ EMSG(_("E687: Less targets than List items"));
return FAIL;
}
if (var_count - semicolon > i)
{
- EMSG(_("E999: More targets than List items"));
+ EMSG(_("E688: More targets than List items"));
return FAIL;
}
@@ -1574,7 +1575,7 @@ set_var_idx(name, ip, rettv, copy, endchars)
{
if (tv->v_type != VAR_LIST || tv->vval.v_list == NULL)
{
- EMSG(_("E999: Can only index a List"));
+ EMSG(_("E689: Can only index a List"));
p = NULL;
break;
}
@@ -1707,7 +1708,7 @@ eval_for_line(arg, errp, nextcmdp, skip)
expr = skipwhite(expr);
if (expr[0] != 'i' || expr[1] != 'n' || !vim_iswhite(expr[2]))
{
- EMSG(_("E999: Missing \"in\" after :for"));
+ EMSG(_("E690: Missing \"in\" after :for"));
return fi;
}
@@ -2587,9 +2588,9 @@ eval4(arg, rettv, evaluate)
|| (type != TYPE_EQUAL && type != TYPE_NEQUAL))
{
if (rettv->v_type != var2.v_type)
- EMSG(_("E999: Can only compare List with List"));
+ EMSG(_("E691: Can only compare List with List"));
else
- EMSG(_("E999: Invalid operation for Lists"));
+ EMSG(_("E692: Invalid operation for Lists"));
clear_tv(rettv);
clear_tv(&var2);
return FAIL;
@@ -2609,9 +2610,9 @@ eval4(arg, rettv, evaluate)
|| (type != TYPE_EQUAL && type != TYPE_NEQUAL))
{
if (rettv->v_type != var2.v_type)
- EMSG(_("E999: Can only compare Funcref with Funcref"));
+ EMSG(_("E693: Can only compare Funcref with Funcref"));
else
- EMSG(_("E999: Invalid operation for Funcrefs"));
+ EMSG(_("E694: Invalid operation for Funcrefs"));
clear_tv(rettv);
clear_tv(&var2);
return FAIL;
@@ -3115,7 +3116,7 @@ eval_index(arg, rettv, evaluate)
if (rettv->v_type == VAR_FUNC)
{
- EMSG(_("E999: Cannot index a Funcref"));
+ EMSG(_("E695: Cannot index a Funcref"));
return FAIL;
}
@@ -3588,7 +3589,7 @@ get_list_tv(arg, rettv, evaluate)
break;
if (**arg != ',')
{
- EMSG2(_("E999: Missing comma in list: %s"), *arg);
+ EMSG2(_("E696: Missing comma in list: %s"), *arg);
goto failret;
}
*arg = skipwhite(*arg + 1);
@@ -3596,7 +3597,7 @@ get_list_tv(arg, rettv, evaluate)
if (**arg != ']')
{
- EMSG2(_("E999: Missing end of list ']': %s"), *arg);
+ EMSG2(_("E697: Missing end of list ']': %s"), *arg);
failret:
if (evaluate)
list_free(l);
@@ -3952,7 +3953,7 @@ list_copy(orig, deep)
return NULL;
if (recurse >= VAR_LIST_MAXNEST)
{
- EMSG(_("E999: List nested too deep for making a copy"));
+ EMSG(_("E698: List nested too deep for making a copy"));
return NULL;
}
++recurse;
@@ -4178,6 +4179,7 @@ static struct fst
{"did_filetype", 0, 0, f_did_filetype},
{"diff_filler", 1, 1, f_diff_filler},
{"diff_hlID", 2, 2, f_diff_hlID},
+ {"empty", 1, 1, f_empty},
{"escape", 2, 2, f_escape},
{"eventhandler", 0, 0, f_eventhandler},
{"executable", 1, 1, f_executable},
@@ -5118,7 +5120,7 @@ f_call(argvars, rettv)
{
if (argc == MAX_FUNC_ARGS)
{
- EMSG(_("E999: Too many arguments"));
+ EMSG(_("E699: Too many arguments"));
break;
}
/* Make a copy of each argument (is this really needed?) */
@@ -5510,6 +5512,38 @@ f_diff_hlID(argvars, rettv)
}
/*
+ * "empty({expr})" function
+ */
+ static void
+f_empty(argvars, rettv)
+ typeval *argvars;
+ typeval *rettv;
+{
+ int n;
+
+ switch (argvars[0].v_type)
+ {
+ case VAR_STRING:
+ case VAR_FUNC:
+ n = argvars[0].vval.v_string == NULL
+ || *argvars[0].vval.v_string == NUL;
+ break;
+ case VAR_NUMBER:
+ n = argvars[0].vval.v_number == 0;
+ break;
+ case VAR_LIST:
+ n = argvars[0].vval.v_list == NULL
+ || argvars[0].vval.v_list->lv_first == NULL;
+ break;
+ default:
+ EMSG2(_(e_intern2), "f_empty()");
+ n = 0;
+ }
+
+ rettv->vval.v_number = n;
+}
+
+/*
* "escape({string}, {chars})" function
*/
static void
@@ -6070,7 +6104,7 @@ f_function(argvars, rettv)
if (s == NULL || *s == NUL || isdigit(*s))
EMSG2(_(e_invarg2), s);
else if (!function_exists(s))
- EMSG2(_("E999: Unknown function: %s"), s);
+ EMSG2(_("E700: Unknown function: %s"), s);
else
{
rettv->vval.v_string = vim_strsave(s);
@@ -7710,7 +7744,7 @@ f_len(argvars, rettv)
rettv->vval.v_number = list_len(argvars[0].vval.v_list);
break;
default:
- EMSG(_("E999: Invalid type for len()"));
+ EMSG(_("E701: Invalid type for len()"));
break;
}
}
@@ -9413,7 +9447,7 @@ f_sort(argvars, rettv)
if (item_compare_func != NULL
&& item_compare2((void *)&ptrs[0], (void *)&ptrs[1])
== ITEM_COMPARE_FAIL)
- EMSG(_("E999: Sort compare function failed"));
+ EMSG(_("E702: Sort compare function failed"));
else
{
/* Sort the array with item pointers. */
@@ -11048,7 +11082,7 @@ get_tv_number(varp)
n = (long)(varp->vval.v_number);
break;
case VAR_FUNC:
- EMSG(_("E999: Using function reference as a number"));
+ EMSG(_("E703: Using function reference as a number"));
break;
case VAR_STRING:
if (varp->vval.v_string != NULL)
@@ -11420,12 +11454,12 @@ set_var(name, tv, copy)
&& !ASCII_ISUPPER((name[0] != NUL && name[1] == ':')
? name[2] : name[0]))
{
- EMSG2(_("E999: Funcref variable name must start with a capital: %s"), name);
+ EMSG2(_("E704: Funcref variable name must start with a capital: %s"), name);
return;
}
if (function_exists(name))
{
- EMSG2(_("E999: Variable name conflicts with existing function: %s"), name);
+ EMSG2(_("705: Variable name conflicts with existing function: %s"), name);
return;
}
}
@@ -11439,7 +11473,7 @@ set_var(name, tv, copy)
&& (tv->v_type == VAR_STRING
|| tv->v_type == VAR_NUMBER)))
{
- EMSG2(_("E999: Variable type mismatch for: %s"), name);
+ EMSG2(_("E706: Variable type mismatch for: %s"), name);
return;
}
clear_tv(&v->tv);
@@ -12065,7 +12099,7 @@ ex_function(eap)
v = find_var(name, FALSE);
if (v != NULL && v->tv.v_type == VAR_FUNC)
{
- EMSG2(_("E999: Function name conflicts with variable: %s"), name);
+ EMSG2(_("E707: Function name conflicts with variable: %s"), name);
goto erret;
}