- Do not print new line after xterm title.
  With xterm.title=on, each command displayed an empty line on the
  terminal, which is not only unnecessary but also changes output format
  for the helper subcommands starting with an underscore.

Signed-off-by: Paul Beckingham <paul@beckingham.net>
This commit is contained in:
Rainer Müller 2013-02-19 22:19:47 -05:00 committed by Paul Beckingham
parent 2bb601e6f2
commit 0bcb22f8e4
2 changed files with 3 additions and 1 deletions

View file

@ -99,6 +99,8 @@ Bugs
+ Fixed manpages that were not installed when running an out-of-source build + Fixed manpages that were not installed when running an out-of-source build
(thanks to Vincent Petithory). (thanks to Vincent Petithory).
+ Added missing localized confirmation strings (thanks to Rainer Müller). + Added missing localized confirmation strings (thanks to Rainer Müller).
+ Fixed bug that added an extra newline after setting the terminal title
(thanks to Rainer Müller).
------ old releases ------------------------------ ------ old releases ------------------------------

View file

@ -683,7 +683,7 @@ void Context::updateXtermTitle ()
std::string title; std::string title;
join (title, " ", a3.list ()); join (title, " ", a3.list ());
std::cout << "]0;task " << command << " " << title << "" << std::endl; std::cout << "]0;task " << command << " " << title << "";
} }
} }