summaryrefslogtreecommitdiffstats
path: root/src/typval.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/typval.c')
-rw-r--r--src/typval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/typval.c b/src/typval.c
index fa0574dd08..be3a7b8f5c 100644
--- a/src/typval.c
+++ b/src/typval.c
@@ -221,7 +221,7 @@ tv_get_bool_or_number_chk(typval_T *varp, int *denote, int want_bool)
if (varp->v_type == VAR_BOOL)
emsg(_(e_using_bool_as_number));
else
- emsg(_("E611: Using a Special as a Number"));
+ emsg(_(e_using_special_as_number));
break;
}
return varp->vval.v_number == VVAL_TRUE ? 1 : 0;