diff -Nru byobu-5.16/debian/changelog byobu-5.16/debian/changelog --- byobu-5.16/debian/changelog 2012-03-11 17:51:08.000000000 +0530 +++ byobu-5.16/debian/changelog 2012-03-31 12:45:54.000000000 +0530 @@ -1,3 +1,10 @@ +byobu (5.16-0ubuntu2) precise; urgency=low + + * debian/status_area.patch + - Fixes indefinite scroll-out when environment variable "VTE_CJK_WIDTH=1" is set. (LP: #952724) + + -- Vibhav Pant Sat, 31 Mar 2012 12:44:20 +0530 + byobu (5.16-0ubuntu1) precise; urgency=low * usr/lib/byobu/updates_available: LP: #942469 diff -Nru byobu-5.16/debian/patches/series byobu-5.16/debian/patches/series --- byobu-5.16/debian/patches/series 1970-01-01 05:30:00.000000000 +0530 +++ byobu-5.16/debian/patches/series 2012-03-31 12:26:01.000000000 +0530 @@ -0,0 +1 @@ +status_area.patch diff -Nru byobu-5.16/debian/patches/status_area.patch byobu-5.16/debian/patches/status_area.patch --- byobu-5.16/debian/patches/status_area.patch 1970-01-01 05:30:00.000000000 +0530 +++ byobu-5.16/debian/patches/status_area.patch 2012-03-31 12:43:42.000000000 +0530 @@ -0,0 +1,24 @@ +Description: When environment varibable "VTE_CJK_WIDTH=1" is set, byobu-tmux is scroll-out infinitely. This patch fixes this bug. +Author: Fumihito YOSHIDA +Origin: https://code.launchpad.net/~hito/byobu/vte-cjk/+merge/96998/+preview-diff/+files/preview.diff +Bug: https://bugs.launchpad.net/byobu/+bug/952724 +Bug-Ubuntu: https://bugs.launchpad.net/bugs/952724 +Forwarded: no +Reviewed-By: Dustin Kirkland +Last-Update: 2012-31-03 + +--- byobu-5.16.orig/usr/lib/byobu/logo ++++ byobu-5.16/usr/lib/byobu/logo +@@ -55,7 +55,11 @@ __logo() { + *ubuntu*) + if $MARKUP; then + if [ "$UTF8" = "1" ] || [ "$BYOBU_BACKEND" = "tmux" ]; then +- color m W; printf " u "; color - ++ if [ ! "$VTE_CJK_WIDTH" = "1" ] && [ ! "$VTE_CJK_WIDTH" = "wide" ] ; then ++ color m W; printf " u "; color - ++ fi ++ else ++ color m W; printf " U "; color - + else + color m W; printf " U "; color - + fi