diff options
-rw-r--r-- | src/message.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/message.c b/src/message.c index b574df63d..8330ef738 100644 --- a/src/message.c +++ b/src/message.c @@ -1577,7 +1577,7 @@ str2special(sp, from) { c = TO_SPECIAL(str[1], str[2]); str += 2; - if (c == K_ZERO) /* display <Nul> as ^@ */ + if (c == KS_ZERO) /* display <Nul> as ^@ or <Nul> */ c = NUL; } if (IS_SPECIAL(c) || modifiers) /* special key */ diff --git a/src/version.c b/src/version.c index b3c7be573..2d0e42fe8 100644 --- a/src/version.c +++ b/src/version.c @@ -729,6 +729,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1143, +/**/ 1142, /**/ 1141, |