summaryrefslogtreecommitdiff
path: root/Xext/panoramiX.h
diff options
context:
space:
mode:
authorJamey Sharp <jamey@minilop.net>2010-04-26 15:05:06 -0700
committerJamey Sharp <jamey@minilop.net>2010-04-26 19:19:02 -0700
commit7e573b5ccd2c759f74ebb84d3a5a23da6b88ec6d (patch)
tree1cf1743aecf31d7f1bba30e59d158f5344ba4eea /Xext/panoramiX.h
parente372cc58e02391c3e8e82ac03f73fbe8b1f7d49c (diff)
Kill unused/useless macros in panoramiX.h: BREAK_IF, IF_RETURN, FORCE_ROOT
This header doesn't seem to be used outside the server tree, so I don't think anything was depending on these except what I've fixed in this patch. FORCE_ROOT is not used anywhere, and never has been in all the history that's in git. ajax removed its FORCE_WIN and FORCE_CMAP companions three years ago, in 04b87d6dfae02e4ecdb5216d12c6cdafd1e8c2b4. BREAK_IF and IF_RETURN expanded to exactly the keywords in their names, which is silly. They were rarely used and served only to make callers inconsistent with the idioms used elsewhere in the server. Signed-off-by: Jamey Sharp <jamey@minilop.net> Reviewed-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'Xext/panoramiX.h')
-rw-r--r--Xext/panoramiX.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/Xext/panoramiX.h b/Xext/panoramiX.h
index 463a99441..35de17951 100644
--- a/Xext/panoramiX.h
+++ b/Xext/panoramiX.h
@@ -80,19 +80,6 @@ typedef struct {
#define FOR_NSCREENS_BACKWARD(j) for(j = PanoramiXNumScreens - 1; j >= 0; j--)
#define FOR_NSCREENS(j) FOR_NSCREENS_FORWARD(j)
-#define BREAK_IF(a) if ((a)) break
-#define IF_RETURN(a,b) if ((a)) return (b)
-
-#define FORCE_ROOT(a) { \
- int _j; \
- for (_j = PanoramiXNumScreens - 1; _j; _j--) \
- if ((a).root == WindowTable[_j]->drawable.id) \
- break; \
- (a).rootX += panoramiXdataPtr[_j].x; \
- (a).rootY += panoramiXdataPtr[_j].y; \
- (a).root = WindowTable[0]->drawable.id; \
-}
-
#define IS_SHARED_PIXMAP(r) (((r)->type == XRT_PIXMAP) && (r)->u.pix.shared)
#endif /* _PANORAMIX_H_ */