32f1a11074
* New features: - Handle the STATE_ADD command of the EWMH _NET_WM_STATE message from version 1.3 of the EWMH spec. - Support transparency in ARGB windows * Bug Fixes: - Fixed problem with windows disappearing when created unless the style Unmanaged was used. - Edge move delay was used as resistance for the top edge. - Fixed a parsing problem of the screen argument of the SnapAttraction style. - Some html documentation files were not installed. - Fixed a memory leak in internationalized font handling. - Fixed a bug in MinOverlap placement. - Fixed the StickyAcrossPages style in the FvwmPager. - Fixed the determination of the X charset on UTF-8 systems. - Fixed a crash when certain EWMH messages were sent to unmanaged windows. - Fixed a memory leak in multibyte codepage code. - Ignore the EWMH staysontop and staysonbottom hints if the EWMHIgnoreStackingOrderHints style is used. - Fixed a sporadic crash when the root background set by gnome, fvwm-root, esetroot etc. changes and a root transparent colour set is used. - Fixed spradic crash in modules with root transparent background from colour sets. - Fixed a possible crash if the last active module fails.
15 lines
365 B
Text
15 lines
365 B
Text
$NetBSD: patch-ab,v 1.4 2008/02/27 16:58:18 martti Exp $
|
|
|
|
Fixed return type
|
|
|
|
--- config.h.in.orig 2007-09-01 10:31:54.000000000 +0000
|
|
+++ config.h.in 2007-11-07 08:14:53.000000000 +0000
|
|
@@ -530,7 +530,7 @@
|
|
#pragma alloca
|
|
# else
|
|
# ifndef alloca /* predefined by HP cc +Olibcalls */
|
|
- char *alloca ();
|
|
+ void *alloca ();
|
|
# endif
|
|
# endif
|
|
#endif
|