Based upon merge request 104, closes #174
References:
procps-ng/procps!104
procps-ng/procps#174
* top: E/P-core toggle ('5' key) added to help
* vmstat: Referesh memory statistics Debian #1027963
* w: Add --pids option merge #159
+ * watch: Pass through beep issue #104
procps-ng-4.0.2
---------------
} while (c != WEOF && !iswprint(c)
&& c < 128
&& wcwidth(c) == 0
+ && c != L'\a'
&& c != L'\n'
&& c != L'\t'
&& (c != L'\033'
do
c = getc(p);
while (c != EOF && !isprint(c)
+ && c != '\a'
&& c != '\n'
&& c != '\t'
&& (c != L'\033'
eolseen = 1;
else if (c == L'\t')
tabpending = 1;
+ else if (c == L'\a') {
+ beep();
+ continue;
+ }
#ifdef WITH_WATCH8BIT
if (x == width - 1 && wcwidth(c) == 2) {
y++;