Age | Commit message (Collapse) | Author |
|
replacement anymore
|
|
|
|
instead of 1, and make it consistent with gnu.
ok ckuethe@
|
|
noted by Vadim Zhukov, though slightly different (doc) fix committed;
ok millert
|
|
ok canacar@
|
|
|
|
by a backslash, if the delimiter is not a slash;
adapted from freebsd -r1.47 from yar;
|
|
future work. ok av@ a similar diff.
|
|
without a directory (e.g. :cscope add cscope.out). Found and fixed by
Paul Irofti, with help from me; Thanks!
upstream nvi also has this fix.
ok otto@.
|
|
requested. Do this for GNU cvs compatibility, too.
ok joris
|
|
ok joris
|
|
error instead of ignoring it.
ok joris
|
|
ok otto
|
|
ok millert
|
|
Now you can do something like:
global-set-key "\^c\^c" compile
in your ~/.mg
|
|
ok ratchov@
|
|
commands which toggle settings can take an explicit on or off argument
to force the setting appropiately, show these arguments in usage;
synchronize synopsis and usage of commands; spacing; KNF;
other minor documentation tweaks.
written with help by jmc@
ok jmc@ (documentation), martynas@ (type usage and default file transfer type)
|
|
|
|
match the GNU pkg-config --list-all output.
ok ckuethe@
|
|
|
|
actually uses this, bleh)
okay otto@
|
|
okay otto@, some useful ideas from miod@
|
|
okay otto@
|
|
okay otto@
|
|
|
|
|
|
michael.barabanov AT gmail.com; ok markus@
|
|
years ago is not correct if the diff has an empty context for other
reasons, so revert that change. Problem found by Joerg Sonnenberger;
ok tedu@ millert@
|
|
triggered by POLLIN condition).
mix_pushzero() is not called from the ``xxx_in()'' chain, but calls
abuf_flush() resulting in bad initialization of the mixer, which
will lead to a deadlock at some point.
ok jakemsr
|
|
spotted in a commit too FreeBSD;
ok todd@, oga@, krw@
|
|
aborting silently, and pretending everything went alright.
This lets gzip(1) (especially gzip -t) detect truncated archives
and curruptions that violate the structure of the zlib format.
Unquiet compress(1) in zless/zmore, so the user has a chance
to see errors on corrupted archives.
OK millert@, markus@
|
|
|
|
(with some patches...)
|
|
|
|
|
|
|
|
Inside matching parenthesis, keep spaces as is (use chrsave instead of
pbstr, since there's no way it can be a further macro expansion).
Fixes a long-standing issue with autoconf ( --option -> --option),
matches other m4 than gnum4
okay millert@, fries@
|
|
the end of the last included file AND we still have a macro to expand.
autoconf uses this in wine, and it turns out other m4 also do things that
way (not only gnu m4).
okay fries@, millert@
|
|
From: Pierre Riteau <pierre.riteau@gmail.com>
|
|
|
|
end of the buffer because periodic boundary conditions of the FIFO are
not met
ok jakemsr
|
|
The new dev_xxx() routines expose a "high level" self-contained
interface to the device. At initialization, the device is opened
and two chains of aproc structures are created:
* a playback chain that exposes a (initially) empty mix
aproc to which the rest of the code can attach new
streams to be played
* record chain that exposes a (initially) empty sub aproc
to which the rest of the code can attach new stream to
to record
The rest of the code, has just to use dev_attach() routine to
attach streams. While we're at it, add a ``devops'' structure
containing pointers to the device-specific routines. This will
allow later to add support for other type of device than the
Sun API.
Also, write the .wav headers in file_del(), so put all header
related data in the file strucuture. This allows to close() the
file, as soon as wpipe_xxx() aproc terminates. This will be
useful for the server, because it will need to close() descripts
of closed connections immediately.
add mix_pushzero() routine to fill the mixer with silence. It
will be used to avoid the mixer to underrun when there are no
input streams. Since we always have at least one input stream
there's no behaviour change.
ok jakemsr
|
|
hup() routines of the aproc strucure check that the aproc
structure has not desappeared. This never happens currently, but
will be allowed later. No behaviour change.
ok jakemsr
|
|
set, the mix aproc will exit once there are no more input
streams, similarly the sub aproc will exit once there are no
more ouput streams. If the flag is not set, the mix aproc will
generate silence, and the sub aproc will drop samples. By
default this flag is set, so no behaviour change.
ok jakemsr
|
|
bytes that entered the FIFO. The counter may overflow, so it
should be used with "modulo 2^32" arithmetic. The counter will
be used later to synchronize playback to record. No behaviour
change.
ok jakemsr
|
|
before free()ing the aproc structure, this is cleaner and will
allow to reuse wpipe_xxx() and rpipe_xxx() when defining new
aprocs. No behaviour change.
ok jakemsr
|
|
generic abuf structure, so it can reused. Required for an audio
server. No behaviour change.
ok jakemsr
|
|
abuf_rdiscard() routine. Similarly add abuf_wcommit() routine for
writing. The purpose is to stop manupulating FIFO pointers in
various places outiside abuf.c, its too error prone.
No behaviour change.
ok jakemsr
|
|
write feature. Add additional check for media type before blanking.
The patch fixes problem for Giovanni.
ok fgsch
|
|
SYNOPSIS and usage(); after some discussion with canacar
|