diff --git a/debian/changelog b/debian/changelog index a3facd08..ce5ada2d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -33,6 +33,8 @@ byobu (4.13) unreleased; urgency=low - add vi modelines * usr/lib/byobu/hostname: - whitespace handled elsewhere + * usr/bin/byobu-launch: + - fix typo, missing whitespace -- Dustin Kirkland Thu, 16 Jun 2011 11:37:56 -0500 diff --git a/usr/bin/byobu-launch b/usr/bin/byobu-launch index 9543716d..05c37125 100755 --- a/usr/bin/byobu-launch +++ b/usr/bin/byobu-launch @@ -31,7 +31,7 @@ DATA="$HOME/.$PKG" # $HOME/.bashrc: export LC_BYOBU=0 # or edit your sshd_config, ssh_config, and set: # $HOME/.bashrc: export BYOBU_DISABLE=1 -if [ "$LC_BYOBU" != "0" ] && [ "$BYOBU_DISABLE" != "1"]; then +if [ "$LC_BYOBU" != "0" ] && [ "$BYOBU_DISABLE" != "1" ]; then case "$-" in *i*) # Attempt to merge shell history across sessions/windows (works with a few exceptions)