Bug
- 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:
committed by
Paul Beckingham
parent
2bb601e6f2
commit
0bcb22f8e4
@@ -99,6 +99,8 @@ Bugs
|
||||
+ Fixed manpages that were not installed when running an out-of-source build
|
||||
(thanks to Vincent Petithory).
|
||||
+ 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 ------------------------------
|
||||
|
||||
|
||||
@@ -683,7 +683,7 @@ void Context::updateXtermTitle ()
|
||||
|
||||
std::string title;
|
||||
join (title, " ", a3.list ());
|
||||
std::cout << "]0;task " << command << " " << title << "" << std::endl;
|
||||
std::cout << "]0;task " << command << " " << title << "";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user