summaryrefslogtreecommitdiff
path: root/src/option.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-03-29 21:18:24 +0000
committerBram Moolenaar <Bram@vim.org>2006-03-29 21:18:24 +0000
commite2f98b95c8071f772695602cd4f714dc588eb8e7 (patch)
tree28442f952f7e5258e2addd8871a4a2930e768c0a /src/option.c
parent86ca6e3b8c9c5d909421eb5abc2d81e02d402b49 (diff)
downloadvim-git-e2f98b95c8071f772695602cd4f714dc588eb8e7.tar.gz
updated for version 7.0c03v7.0c03
Diffstat (limited to 'src/option.c')
-rw-r--r--src/option.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/option.c b/src/option.c
index d90e3ad45..e0cfa137a 100644
--- a/src/option.c
+++ b/src/option.c
@@ -431,9 +431,10 @@ struct vimoption
#define ISK_LATIN1 (char_u *)"@,48-57,_,192-255"
/* 'isprint' for latin1 is also used for MS-Windows, where 0x80 is used for
- * the currency sign. Thus this isn't really latin1... */
+ * the currency sign. This isn't really latin1 but Windows-1252, but we can't
+ * detect that. */
#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
-# define ISP_LATIN1 (char_u *)"@,128,161-255"
+# define ISP_LATIN1 (char_u *)"@,~-255"
#else
# define ISP_LATIN1 (char_u *)"@,161-255"
#endif