From 964d1abdb0e6d27df2e7041e7db20433f4fb3ce9 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Tue, 1 Jul 2014 16:10:20 -0400 Subject: Make term_title gettext-aware (BREAKS COMPATIBILITY) --- src/lib/libremessages | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/libremessages') diff --git a/src/lib/libremessages b/src/lib/libremessages index 188affd..db2fdde 100755 --- a/src/lib/libremessages +++ b/src/lib/libremessages @@ -112,7 +112,7 @@ flag() { done } -# Usage: term_title This will be the term title +# Usage: term_title MESG [ARGS...] # Sets the terminal title term_title() { [[ $# -ge 1 ]] || panic @@ -121,7 +121,7 @@ term_title() { screen|tmux) fmt='\ek%s\e\\';; xterm*|rxvt*) fmt='\e]0;%s\a';; esac - printf "$fmt" "$*" + printf "$fmt" "$(printf -- "$@")" } # Usage: setup_traps [handler] -- cgit v1.2.3-54-g00ecf