diff options
author | Egbert Eich <eich@suse.de> | 2004-03-01 15:07:02 +0000 |
---|---|---|
committer | Egbert Eich <eich@suse.de> | 2004-03-01 15:07:02 +0000 |
commit | 35d79958119d41fcdfdc879c9886525a72e7f484 (patch) | |
tree | 221744a5824b8dfc5e70f84018427a930aec0446 | |
parent | 5c5a2f87ce95576e6daa6c45a81d77a85250203e (diff) |
3. Added missing parts to XKB to make XEVIE branch compile (Egbert Eich).XEVIE
2. Merged with XORG-CURRENT branch to obtain a bugfix (Egbert Eich).
1. First add of SUN's XIVIE extension (Stuart Kreitman).
-rw-r--r-- | plugin/PProcess.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugin/PProcess.c b/plugin/PProcess.c index 788cfdc..fa75c1e 100644 --- a/plugin/PProcess.c +++ b/plugin/PProcess.c @@ -26,7 +26,7 @@ other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/programs/xrx/plugin/PProcess.c,v 1.6 2001/12/14 20:02:17 dawes Exp $ */ +/* $XFree86: xc/programs/xrx/plugin/PProcess.c,v 1.7 2003/12/22 17:48:13 tsi Exp $ */ #include "RxPlugin.h" #include "XUrls.h" @@ -114,6 +114,7 @@ IsInWinList(Window *list, int count, Window win) return False; } +#ifdef UNUSED static void AppendToWinList(Window **new_list, int *new_count, Window *list, int count, Window win) @@ -123,6 +124,7 @@ AppendToWinList(Window **new_list, int *new_count, memcpy(*new_list, list, sizeof(Window) * count); (*new_list)[count] = win; } +#endif static void PrependToWinList(Window **new_list, int *new_count, @@ -187,6 +189,7 @@ RemoveFromWinList(Window **wlist, int *count, Window win) list[0] = list[1]; } +#ifdef UNUSED static void ConcatWinLists(Window **list, int *count, Window *list1, int count1, @@ -218,6 +221,7 @@ SubstractWinLists(Window **wlist, int *count, for (; i < *count; i++, list++) list[0] = list[j]; } +#endif /*********************************************************************** * Add window to the WM_COLORMAP_WINDOWS property on the Netscape |