If a pane has no scrollbar, don't bother to redraw it, and if redraw is
deferred change scrollbar redraws into redraw-all-scrollbars not redraw
entire window. GitHub issue 5529.
Readsb is a Mode-S/ADSB/TIS decoder for RTLSDR, HackRF, Modes-Beast and GNS5894 devices.
tested with RTL-SDR Blog v3 by myself, and v4 by lraab@
tested with HackRF Pro by myself as well, but results with RTL-SDR are way better.
OK lraab@
Slightly improve error reporting in two respects:
1. In the error reporting function, if the file argument is absolute,
ignore the basedir. This makes it easier and more robust to talk
about absolute paths, which are typically below /tmp/.
2. Report dba_write failure. Even if the data did not actually change,
the user almost certainly wants to know about the problem because
it's hard to see how it could be intentional to ask makewhatis(8)
to change a database it cannot write to.
macppc ld.so: Load objects with no PLT
Move the check for BSS PLT (if PPC_GOT is zero) after the check for
any kind of PLT (if PLTREL is RELA), so an object without a PLT stops
causing "unsupported insecure BSS PLT object". I got such an object
from Pike https://pike.lysator.liu.se using ld -nostartfiles.
Detail at https://marc.info/?l=openbsd-tech&m=178734961786056&w=2
ok kettenis@
Traditionally this would install a mkstemp() temporary file, then [-s]
strip that installed file, then move it into place, which can
temporarily require 3x as much space. This changes the command to
attempt strip -o to a mstemp() temporary file, and upon success reopens
that to apply permissions and modes. Upon failure, it copies it the old
way.
Initial diff from kettenis, which made strip -o behaviour too harsh.
ports tree testing by naddy
Always use synchronized updates in copy mode (like when not in the
active pane), since copy mode will almost always moved the cursor. From
Artem Goldenberg in GitHub issue 5525.