usr/lib/byobu/rcs_cost, usr/lib/byobu/time_binary,

usr/lib/byobu/include/common, usr/lib/byobu/include/mondrian,
  usr/lib/byobu/include/shutil:
This commit is contained in:
Dustin Kirkland 2012-02-12 09:20:26 -06:00
commit e4906a9328
4 changed files with 6 additions and 4 deletions

4
debian/changelog vendored
View file

@ -23,7 +23,9 @@ byobu (5.8) unreleased; urgency=low
* usr/lib/byobu/cpu_freq, usr/lib/byobu/cpu_temp,
usr/lib/byobu/custom, usr/lib/byobu/date, usr/lib/byobu/disk_io,
usr/lib/byobu/ec2_cost, usr/lib/byobu/logo, usr/lib/byobu/network,
usr/lib/byobu/rcs_cost, usr/lib/byobu/time_binary:
usr/lib/byobu/rcs_cost, usr/lib/byobu/time_binary,
usr/lib/byobu/include/common, usr/lib/byobu/include/mondrian,
usr/lib/byobu/include/shutil:
- use printf where possible, saves some forks
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 30 Jan 2012 18:12:49 -0600

View file

@ -44,7 +44,7 @@ if [ -z "${BYOBU_INCLUDED_LIBS}" ]; then
unset i
fi
if ! command -v "$BYOBU_BACKEND" >/dev/null; then
echo "ERROR: $PKG won't work without tmux or screen installed" 1>&2
printf "%s\n" "ERROR: $PKG won't work without tmux or screen installed" 1>&2
fi
fi
fi

View file

@ -44,7 +44,7 @@ get_random_pane() {
r=$((RANDOM % 4))
done
LAST_PANE="$r"
echo "$r"
printf "%s\n" "$r"
}
get_random_numbers() {

View file

@ -141,7 +141,7 @@ newest() {
}
error() {
echo "ERROR: " "$@" 1>&2
printf "%s\n" "ERROR: " "$@" 1>&2
}
fail() {