1
1

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
Этот коммит содержится в:
David Lawrence Ramsey 2005-06-10 20:45:54 +00:00
родитель 44491acfef
Коммит d0d5b8fc0e
2 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -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

Просмотреть файл

@ -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++;