diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-06-12 23:53:31 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-06-12 23:53:31 -0700 |
commit | 578c21e6cbfcd42d2b765ff93a5340555ef91d9d (patch) | |
tree | d1c0cec0f04e444105fc6e5580b82777ff5d7635 /src/xterm.c | |
parent | 96f53c6c3d6d31bc81187b5a5fdb3ec942cd6f51 (diff) | |
download | emacs-578c21e6cbfcd42d2b765ff93a5340555ef91d9d.tar.gz |
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.c | 2 |
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) = XCreatePixmapFromBitmapData (dpyinfo->display, dpyinfo->root_window, gray_bitmap_bits, gray_bitmap_width, gray_bitmap_height, - (unsigned long) 1, (unsigned long) 0, 1); + 1, 0, 1); } #ifdef HAVE_X_I18N |