ascii(7): add a reference to the ANSI X3.4

2019-09-16 Thread Masanori Ogino
Hello, Unlike utf8(7), ascii(7) does not contain a reference to its standard. This patch just adds the reference. Best, Masanori Index: share/man/man7/ascii.7 === RCS file: /cvs/src/share/man/man7/ascii.7,v retrieving revision 1.9 d

Re: switching between audio devices with no playback interruption

2019-09-16 Thread Martin Pieuchot
On 16/09/19(Mon) 19:31, Alexandre Ratchov wrote: > On Sun, Sep 15, 2019 at 03:01:36PM -0300, Martin Pieuchot wrote: > > On 29/08/19(Thu) 10:52, Alexandre Ratchov wrote: > > > The diff below allows to specifiy "an alternate device" to use in case > > > the audio device is disconnected. If so, progra

Re: switching between audio devices with no playback interruption

2019-09-16 Thread Alexandre Ratchov
On Sun, Sep 15, 2019 at 03:01:36PM -0300, Martin Pieuchot wrote: > On 29/08/19(Thu) 10:52, Alexandre Ratchov wrote: > > The diff below allows to specifiy "an alternate device" to use in case > > the audio device is disconnected. If so, programs continue playing > > using the other device. > > > >

pms(4): disabling extended protocols

2019-09-16 Thread Ulf Brosziewski
This patch adds a device configuration flag to pms. It disables the protocol lookup - which leaves touchpads in mouse emulation mode and may be useful for diagnostic purposes and as a workaround for protocol errors. OK? Index: dev/pckbc/pms.c

Re: don't hand-roll bpf_mtap_hdr for radiotap in wireless drivers

2019-09-16 Thread Claudio Jeker
On Thu, Sep 12, 2019 at 01:21:46PM +1000, David Gwynne wrote: > radiotap code puts an mbuf on the stack so it can build a chain that > includes a radiotap header for bpf_mtap to chew on. bpf_mtap_hdr can do > that for you though. > > bpf_mtap_hdr also cheats by using an m_hdr instead of a full mbu

Re: assert() missing in flex

2019-09-16 Thread Michael Mikonos
On Mon, Sep 16, 2019 at 11:38:30AM +0200, Marc Espie wrote: > On Mon, Sep 16, 2019 at 05:07:21PM +0800, Michael Mikonos wrote: > > Hello, > > > > When building flex on clang 8.0.1 (i386) I noticed that assert() > > expands to nothing. This happens because of a fallback declaration > > of assert()

Re: assert() missing in flex

2019-09-16 Thread Marc Espie
On Mon, Sep 16, 2019 at 05:07:21PM +0800, Michael Mikonos wrote: > Hello, > > When building flex on clang 8.0.1 (i386) I noticed that assert() > expands to nothing. This happens because of a fallback declaration > of assert() in flexdef.h when HAVE_ASSERT_H is not set. Instead of > changing flexde

assert() missing in flex

2019-09-16 Thread Michael Mikonos
Hello, When building flex on clang 8.0.1 (i386) I noticed that assert() expands to nothing. This happens because of a fallback declaration of assert() in flexdef.h when HAVE_ASSERT_H is not set. Instead of changing flexdef.h the following patch follows the existing pattern in Makefile of adding -D