summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile.am6
-rw-r--r--configure.ac2
-rw-r--r--man/AppleWM.man10
-rw-r--r--man/Makefile.am4
-rw-r--r--src/applewm.c10
5 files changed, 16 insertions, 16 deletions
diff --git a/Makefile.am b/Makefile.am
index 28f558d..095db2b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,6 +1,6 @@
-#
+#
# Copyright 2005 Red Hat, Inc.
-#
+#
# Permission to use, copy, modify, distribute, and sell this software and its
# documentation for any purpose is hereby granted without fee, provided that
# the above copyright notice appear in all copies and that both that
@@ -10,7 +10,7 @@
# specific, written prior permission. Red Hat makes no
# representations about the suitability of this software for any purpose. It
# is provided "as is" without express or implied warranty.
-#
+#
# RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
# EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
diff --git a/configure.ac b/configure.ac
index 6534657..de18624 100644
--- a/configure.ac
+++ b/configure.ac
@@ -42,7 +42,7 @@ XORG_CHECK_MALLOC_ZERO
# Obtain compiler/linker options for depedencies
PKG_CHECK_MODULES(APPLEWM, x11 xext xextproto [applewmproto >= 1.4])
-
+
AC_CONFIG_FILES([Makefile
src/Makefile
man/Makefile
diff --git a/man/AppleWM.man b/man/AppleWM.man
index bb81470..5620ab5 100644
--- a/man/AppleWM.man
+++ b/man/AppleWM.man
@@ -3,7 +3,7 @@
.\"
.\" Copyright (c) 2002 Apple Computer, Inc. All Rights Reserved.
.\" Copyright (c) 2003 Torrey T. Lyons. All Rights Reserved.
-.\"
+.\"
.\" Permission is hereby granted, free of charge, to any person obtaining a
.\" copy of this software and associated documentation files (the
.\" "Software"), to deal in the Software without restriction, including
@@ -11,11 +11,11 @@
.\" distribute, sub license, and/or sell copies of the Software, and to
.\" permit persons to whom the Software is furnished to do so, subject to
.\" the following conditions:
-.\"
+.\"
.\" The above copyright notice and this permission notice (including the
.\" next paragraph) shall be included in all copies or substantial portions
.\" of the Software.
-.\"
+.\"
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
.\" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
.\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
@@ -35,9 +35,9 @@
AppleWM \- Apple rootless window management extension.
.SH SYNTAX
\&#include <X11/extensions/applewm.h>
-.nf
+.nf
.sp
-Bool XAppleWMQueryExtension \^(\^Display *\fIdpy\fP,
+Bool XAppleWMQueryExtension \^(\^Display *\fIdpy\fP,
int *\fIevent_basep\fP, int *\fIerror_basep\fP\^);
.sp
Status XAppleWMQueryVersion \^(\^Display *\fIdpy\fP,
diff --git a/man/Makefile.am b/man/Makefile.am
index f4a45f2..9c9412e 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -1,5 +1,5 @@
# Copyright 2005 Red Hat, Inc.
-#
+#
# Permission to use, copy, modify, distribute, and sell this software and its
# documentation for any purpose is hereby granted without fee, provided that
# the above copyright notice appear in all copies and that both that
@@ -9,7 +9,7 @@
# specific, written prior permission. Red Hat makes no representations about
# the suitability of this software for any purpose. It is provided "as is" without
# express or implied warranty.
-#
+#
# RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
# EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
diff --git a/src/applewm.c b/src/applewm.c
index 59bdef2..e50b6c8 100644
--- a/src/applewm.c
+++ b/src/applewm.c
@@ -355,18 +355,18 @@ Bool XAppleWMSendPSN(Display* dpy) {
xAppleWMSendPSNReq *req;
ProcessSerialNumber psn;
OSErr err;
-
-
+
+
TRACE("SendPSN...");
AppleWMCheckExtension (dpy, info, False);
err = GetCurrentProcess(&psn);
-
+
if(err != noErr) {
TRACE("SendPSN... couldn't get current Process.");
return False;
}
-
+
LockDisplay(dpy);
GetReq(AppleWMSendPSN, req);
req->reqType = info->codes->major_opcode;
@@ -382,7 +382,7 @@ Bool XAppleWMSendPSN(Display* dpy) {
Bool XAppleWMAttachTransient(Display* dpy, Window child, Window parent) {
XExtDisplayInfo *info = find_display (dpy);
xAppleWMAttachTransientReq *req;
-
+
TRACE("AttachTransient...");
AppleWMCheckExtension (dpy, info, False);