commit d0d5b8fc0ed221342168e9862b7cf6bcf1be1187
parent 44491acfefa21523fa31922d6aeb2b48bcafe841
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date: Fri, 10 Jun 2005 20:45:54 +0000
in display_string(), don't check for multicolumn characters if the NO_UTF8 flag isn't set
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2624 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
@@ -175,6 +175,8 @@ CVS code -
display_string()
- Avoid a memory corruption problem by allocating enough space
for len plus a trailing multibyte character and/or tab. (DLR)
+ - Don't check for multicolumn characters if the NO_UTF8 flag
+ isn't set. (DLR)
nanogetstr()
- Rename variable def to curranswer to avoid confusion. (DLR)
- Only declare and use the tabbed variable if DISABLE_TABCOMP
diff --git a/src/winio.c b/src/winio.c
@@ -2287,7 +2287,7 @@ char *display_string(const char *buf, size_t start_col, size_t len, bool
}
}
#ifdef NANO_WIDE
- else if (mbwidth(buf_mb) > 1) {
+ else if (!ISSET(NO_UTF8) && mbwidth(buf_mb) > 1) {
converted[index++] = ' ';
start_col++;