mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 21:06:52 +03:00
Fixed bug: Wrong last char processing in handle_alt_font
This commit is contained in:
parent
738fed4ffb
commit
9722a476e6
@ -409,7 +409,7 @@ sub handle_alt_font($)
|
|||||||
{
|
{
|
||||||
shift @p;
|
shift @p;
|
||||||
# Don't change font if we are at the end
|
# Don't change font if we are at the end
|
||||||
if ($#p)
|
if (@p)
|
||||||
{
|
{
|
||||||
$alt_state = $alt_state ? 0 : 1;
|
$alt_state = $alt_state ? 0 : 1;
|
||||||
$buffer .= $font[$alt_state];
|
$buffer .= $font[$alt_state];
|
||||||
|
Loading…
Reference in New Issue
Block a user