cosmetic fix
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3104 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
f1a717291b
commit
c0181c95ee
|
@ -78,7 +78,8 @@ CVS code -
|
||||||
- If wcwidth() returns -1 for the character passed in, treat the
|
- If wcwidth() returns -1 for the character passed in, treat the
|
||||||
character as having the width of Unicode U+FFFD (Replacement
|
character as having the width of Unicode U+FFFD (Replacement
|
||||||
Character) instead of having zero width, since there are
|
Character) instead of having zero width, since there are
|
||||||
display problems that crop up with the latter approach. (DLR)
|
display problems that sometimes crop up with the latter
|
||||||
|
approach. (DLR)
|
||||||
- files.c:
|
- files.c:
|
||||||
read_file()
|
read_file()
|
||||||
- Remove apparently unneeded logic to handle a case where
|
- Remove apparently unneeded logic to handle a case where
|
||||||
|
|
|
@ -299,8 +299,10 @@ int mbwidth(const char *c)
|
||||||
|
|
||||||
width = wcwidth(wc);
|
width = wcwidth(wc);
|
||||||
|
|
||||||
if (width == -1)
|
if (width == -1) {
|
||||||
width = wcwidth(bad_wchar);
|
wc = bad_wchar;
|
||||||
|
width = wcwidth(wc);
|
||||||
|
}
|
||||||
|
|
||||||
return width;
|
return width;
|
||||||
} else
|
} else
|
||||||
|
|
Loading…
Reference in New Issue