From fdd0397411d647405f92aaebaae0e9d310436e96 Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Thu, 22 Sep 2005 01:36:35 +0000 Subject: Stephen Rueger: 21744: unconditionally assume that \t or \n are not part of multi-byte characters. --- ChangeLog | 5 +++++ Src/prompt.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 45412af1a..04ce046bf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-09-22 Clint Adams + + * Stephen Rueger: 21744: unconditionally assume that + \t or \n are not part of multi-byte characters. + 2005-09-20 Clint Adams * 21740: Completion/Unix/Command/_quilt: completion for diff --git a/Src/prompt.c b/Src/prompt.c index 27a07c574..8bd1ad9de 100644 --- a/Src/prompt.c +++ b/Src/prompt.c @@ -859,7 +859,7 @@ countprompt(char *str, int *wp, int *hp, int overf) * relying on the character set being an extension * of ASCII so it's safe to test a single byte. */ - if (multi) { + if (!multi) { #endif if (*str == '\t') { w = (w | 7) + 1; -- cgit v1.2.3