summaryrefslogtreecommitdiff
path: root/src/ascii.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2011-12-23 12:47:03 +0100
committerBram Moolenaar <Bram@vim.org>2011-12-23 12:47:03 +0100
commit265116a99a01249f62041a9438bb3b7ece7cfeac (patch)
tree857bb2c65416323cde0d0a55fa80c579a44d66b5 /src/ascii.h
parent213ae488546f45f7b4b4a184f99de44d3c1ffd5d (diff)
downloadvim-git-265116a99a01249f62041a9438bb3b7ece7cfeac.tar.gz
updated for version 7.3.383v7.3.383
Problem: For EBCDIC pound sign is defined as 't'. Solution: Correctly define POUND.
Diffstat (limited to 'src/ascii.h')
-rw-r--r--src/ascii.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ascii.h b/src/ascii.h
index e824822b3..a3cfecff7 100644
--- a/src/ascii.h
+++ b/src/ascii.h
@@ -123,7 +123,7 @@
#define DCS 0x90 /* Device Control String */
#define STERM 0x9c /* String Terminator */
-#define POUND '\xA3'
+#define POUND 0xB1
#define CTRL_F_STR "\056"
#define CTRL_H_STR "\026"