aboutsummaryrefslogtreecommitdiffstats
path: root/src/xterm.c
diff options
context:
space:
mode:
authorPaul Eggert2011-06-12 23:53:31 -0700
committerPaul Eggert2011-06-12 23:53:31 -0700
commit578c21e6cbfcd42d2b765ff93a5340555ef91d9d (patch)
treed1c0cec0f04e444105fc6e5580b82777ff5d7635 /src/xterm.c
parent96f53c6c3d6d31bc81187b5a5fdb3ec942cd6f51 (diff)
downloademacs-578c21e6cbfcd42d2b765ff93a5340555ef91d9d.tar.gz
emacs-578c21e6cbfcd42d2b765ff93a5340555ef91d9d.zip
Remove unnecessary casts.
* xterm.c (x_term_init): * xfns.c (x_set_border_pixel): * widget.c (create_frame_gcs): Remove casts to unsigned long etc. These aren't needed now that we assume ANSI C.
Diffstat (limited to 'src/xterm.c')
-rw-r--r--src/xterm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c
index 39e4abb1630..85c19ed16af 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -10268,7 +10268,7 @@ x_term_init (Lisp_Object display_name, char *xrm_option, char *resource_name)
10268 = XCreatePixmapFromBitmapData (dpyinfo->display, dpyinfo->root_window, 10268 = XCreatePixmapFromBitmapData (dpyinfo->display, dpyinfo->root_window,
10269 gray_bitmap_bits, 10269 gray_bitmap_bits,
10270 gray_bitmap_width, gray_bitmap_height, 10270 gray_bitmap_width, gray_bitmap_height,
10271 (unsigned long) 1, (unsigned long) 0, 1); 10271 1, 0, 1);
10272 } 10272 }
10273 10273
10274#ifdef HAVE_X_I18N 10274#ifdef HAVE_X_I18N