aboutsummaryrefslogtreecommitdiff
path: root/x11-wm
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2006-05-14 21:48:31 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2006-05-14 21:48:31 +0000
commita53f2b31106dce2981ffc4577b51385874982ccd (patch)
tree04bb0587a759448dd5c336335526b739da522367 /x11-wm
parentb449c76d8c3f803dcf1692c538cd33648d9c5598 (diff)
downloadports-a53f2b31106dce2981ffc4577b51385874982ccd.tar.gz
ports-a53f2b31106dce2981ffc4577b51385874982ccd.zip
Notes
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);