aboutsummaryrefslogtreecommitdiff
path: root/editors/vim
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2003-10-29 21:01:45 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2003-10-29 21:01:45 +0000
commit24afa13d1f0aa5a773207a00b5ac47e814d8c665 (patch)
tree360d380e3aa3b26c74f49d3f97f1774e4f36782c /editors/vim
parent706b4ad0746e7fa7bf7b7f18ee21994db83c37d3 (diff)
downloadports-24afa13d1f0aa5a773207a00b5ac47e814d8c665.tar.gz
ports-24afa13d1f0aa5a773207a00b5ac47e814d8c665.zip
Notes
Diffstat (limited to 'editors/vim')
-rw-r--r--editors/vim/files/patch-digraph.c14
-rw-r--r--editors/vim/files/patch-globals.h14
2 files changed, 28 insertions, 0 deletions
diff --git a/editors/vim/files/patch-digraph.c b/editors/vim/files/patch-digraph.c
new file mode 100644
index 000000000000..37b7f982b613
--- /dev/null
+++ b/editors/vim/files/patch-digraph.c
@@ -0,0 +1,14 @@
+
+$FreeBSD$
+
+--- digraph.c 2003/10/29 10:29:14 1.1
++++ digraph.c 2003/10/29 10:29:43
+@@ -2175,7 +2175,7 @@
+ str = skipwhite(str);
+ if (!isdigit(*str))
+ {
+- EMSG(_(e_number));
++ EMSG(_(e_numbe));
+ return;
+ }
+ n = getdigits(&str);
diff --git a/editors/vim/files/patch-globals.h b/editors/vim/files/patch-globals.h
new file mode 100644
index 000000000000..ae345331f832
--- /dev/null
+++ b/editors/vim/files/patch-globals.h
@@ -0,0 +1,14 @@
+
+$FreeBSD$
+
+--- globals.h 2003/10/29 10:29:14 1.1
++++ globals.h 2003/10/29 10:29:51
+@@ -1253,7 +1253,7 @@
+ EXTERN char_u e_nowrtmsg[] INIT(=N_("E37: No write since last change (add ! to override)"));
+ EXTERN char_u e_null[] INIT(=N_("E38: Null argument"));
+ #ifdef FEAT_DIGRAPHS
+-EXTERN char_u e_number[] INIT(=N_("E39: Number expected"));
++EXTERN char_u e_numbe[] INIT(=N_("E39: Number expected"));
+ #endif
+ #ifdef FEAT_QUICKFIX
+ EXTERN char_u e_openerrf[] INIT(=N_("E40: Can't open errorfile %s"));