aboutsummaryrefslogtreecommitdiffstats
path: root/x11-wm
diff options
context:
space:
mode:
authormarcus <marcus@FreeBSD.org>2006-05-15 05:48:31 +0800
committermarcus <marcus@FreeBSD.org>2006-05-15 05:48:31 +0800
commitff230fc5509655683db98eed8a8048224d889527 (patch)
treed24989d512291694a287ee4c9a3d4c3fcce5b4a5 /x11-wm
parent104d8a6565bf17a394a0c3e1522339e8a8d3b1c3 (diff)
downloadfreebsd-ports-gnome-ff230fc5509655683db98eed8a8048224d889527.tar.gz
freebsd-ports-gnome-ff230fc5509655683db98eed8a8048224d889527.tar.zst
freebsd-ports-gnome-ff230fc5509655683db98eed8a8048224d889527.zip
Correct last patch by using proper tabs instead of spaces.
Submitted by: Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp>
Diffstat (limited to 'x11-wm')
-rw-r--r--x11-wm/sawfish2/files/patch-functions.c23
-rw-r--r--x11-wm/sawfish2/files/patch-sawmill.h4
2 files changed, 12 insertions, 15 deletions
diff --git a/x11-wm/sawfish2/files/patch-functions.c b/x11-wm/sawfish2/files/patch-functions.c
index 8b8d872be807..ac580c26c823 100644
--- a/x11-wm/sawfish2/files/patch-functions.c
+++ b/x11-wm/sawfish2/files/patch-functions.c
@@ -1,17 +1,14 @@
--- src/functions.c 3 Nov 2002 21:00:36 -0000 1.98
+++ src/functions.c 30 Oct 2003 05:35:18 -0000 1.99
@@ -704,8 +704,10 @@
- repv name;
- if (type == XA_ATOM && (name = x_atom_symbol (l_data[i])) != Qnil)
- rep_VECTI(ret_data, i) = name;
-+ else if (type == XA_INTEGER)
-+ rep_VECTI(ret_data, i) = rep_make_long_int((long) l_data[i]);
- else
-- rep_VECTI(ret_data, i) = rep_make_long_uint(l_data[i]);
-+ rep_VECTI(ret_data, i) = rep_make_long_uint(l_data[i] & 0xffffffffUL);
- }
- break;
+ repv name;
+ if (type == XA_ATOM && (name = x_atom_symbol (l_data[i])) != Qnil)
+ rep_VECTI(ret_data, i) = name;
++ else if (type == XA_INTEGER)
++ rep_VECTI(ret_data, i) = rep_make_long_int((long) l_data[i]);
+ else
+- rep_VECTI(ret_data, i) = rep_make_long_uint(l_data[i]);
++ rep_VECTI(ret_data, i) = rep_make_long_uint(l_data[i] & 0xffffffffUL);
+ }
+ break;
}
-
-
-
diff --git a/x11-wm/sawfish2/files/patch-sawmill.h b/x11-wm/sawfish2/files/patch-sawmill.h
index 971ed12e7750..6c044e3638b7 100644
--- a/x11-wm/sawfish2/files/patch-sawmill.h
+++ b/x11-wm/sawfish2/files/patch-sawmill.h
@@ -4,8 +4,8 @@
/* Frame data */
Window frame;
struct frame_part *frame_parts;
-- u_int frame_x, frame_y; /* relative to client-window */
-+ int frame_x, frame_y; /* relative to client-window */
+- u_int frame_x, frame_y; /* relative to client-window */
++ int frame_x, frame_y; /* relative to client-window */
u_int frame_width, frame_height;
void (*destroy_frame)(struct lisp_window *w);
void (*focus_change)(struct lisp_window *w);