Dario Gjorgjevski
Dario Gjorgjevski
``` text _MOTIF_DRAG_RECEIVER_INFO(_MOTIF_DRAG_RECEIVER_INFO) = 0x6c, 0x0, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 _NET_WM_DESKTOP(CARDINAL) = 2 WM_STATE(WM_STATE): window state: Normal icon window: 0x0...
A problem I see is that both the Emacs windows which are tiled and those which are floated have minheight = maxheight and minwidth = maxwidth. I don't see how...
@Alexey-Yakovenko the main problem is that converting these files again results in files padded to 32-bit (i.e. if I were convert the above file to WavPack, I'd get a 32-bit...
I assume the issue would be present for any lossless codec (or any codec where the BPS value is meaningful) that is set to be handled by FFmpeg.
It is broken in the sense that AC_PROG_LEX does not detect flex built from HEAD (8453b08 at the time of writing). AC_PROG_LEX generates the following program: ```c %{ #ifdef __cplusplus...
Create a `configure.ac` file: ``` AC_INIT AC_PROG_LEX([noyywrap]) AS_IF([test "x$LEX" != xflex], [AC_MSG_ERROR([flex not found])]) AC_OUTPUT ``` Run: ``` $ autoreconf -ifv $ ./configure ``` Result: - Works with flex tag...