summaryrefslogtreecommitdiffstats
path: root/src/proto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2011-08-10 13:21:46 +0200
committerBram Moolenaar <Bram@vim.org>2011-08-10 13:21:46 +0200
commit836082d398eb1dff8fb9fc6227f70ea56044eeba (patch)
tree7a089cb141c3dd2add36024b3590eca6a1e5bd6f /src/proto
parent213b10a57e08cf4389c54084e7236837b2396bb7 (diff)
updated for version 7.3.273v7.3.273
Problem: A BOM in an error file is seen as text. (Aleksey Baibarin) Solution: Remove the BOM from the text before evaluating. (idea by Christian Brabandt)
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/mbyte.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/mbyte.pro b/src/proto/mbyte.pro
index 88496ccf06..8c0788c7fa 100644
--- a/src/proto/mbyte.pro
+++ b/src/proto/mbyte.pro
@@ -2,6 +2,7 @@
int enc_canon_props __ARGS((char_u *name));
char_u *mb_init __ARGS((void));
int bomb_size __ARGS((void));
+void remove_bom __ARGS((char_u *s));
int mb_get_class __ARGS((char_u *p));
int dbcs_class __ARGS((unsigned lead, unsigned trail));
int latin_char2len __ARGS((int c));