termux-packages/packages/ncmpcpp/ncmpcpp.cpp.patch
Oliver Schmidhauser e8c1ceafd9 Don't disable SIGWINCH in ncmpcpp
It makes ncmpcpp resize itself when the window size has changed.
Not sure why this was ever added, but according to @its-pointless it can
be removed
2017-08-07 20:01:46 +02:00

13 lines
390 B
Diff

--- ../cache/ncmpcpp-8134e6e23b2787322fa10e65e44d286da82eea91/src/ncmpcpp.cpp 2017-04-23 02:24:57.000000000 +0000
+++ ./src/ncmpcpp.cpp 2017-04-30 03:20:01.848812572 +0000
@@ -108,8 +108,8 @@
cerr_buffer = std::cerr.rdbuf();
std::cerr.rdbuf(errorlog.rdbuf());
- sigignore(SIGPIPE);
+ // sigignore(SIGPIPE);
signal(SIGWINCH, sighandler);
Mpd.setNoidleCallback(Status::update);