summaryrefslogtreecommitdiff
path: root/src/normal.c
diff options
context:
space:
mode:
authorDaniel Carl <danielcarl@gmx.de>2014-06-04 22:02:26 +0200
committerDaniel Carl <danielcarl@gmx.de>2014-06-04 22:05:10 +0200
commit008056cbb4e7a2a0bc1169d5257c3c10f09b2c2e (patch)
tree68b2422988f9d3b9a9db3a357d4feaad7acfef81 /src/normal.c
parent61ee4fb16765da89f47a84d3a2941b6201ab71e7 (diff)
Removed obsolete IS_CTRL macro.
Diffstat (limited to 'src/normal.c')
-rw-r--r--src/normal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/normal.c b/src/normal.c
index 52e140b..9ffe4c8 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -334,7 +334,7 @@ static char *transchar(int c)
{
static char trans[5];
int i = 0;
- if (IS_CTRL(c)) {
+ if (VB_IS_CTRL(c)) {
trans[i++] = '^';
trans[i++] = CTRL(c);
} else if ((unsigned)c >= 0x80) {