diff options
| author | Dmitry Antipov | 2013-10-29 20:08:08 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2013-10-29 20:08:08 +0400 |
| commit | 2d9783e0b938d0e3550fee7efbb3c6b8b5f18462 (patch) | |
| tree | 09159c8a6b0b4d12bc00a9c21f80f641f69bdb47 /src/xsettings.c | |
| parent | 23af34b00ca14782ba5d1bbada43cd26962739b4 (diff) | |
| download | emacs-2d9783e0b938d0e3550fee7efbb3c6b8b5f18462.tar.gz emacs-2d9783e0b938d0e3550fee7efbb3c6b8b5f18462.zip | |
Prefer 'unsigned long' to 'long unsigned int' and 'unsigned long int'.
* ftxfont.c (ftxfont_get_gcs):
* gtkutil.c (xg_set_widget_bg, xg_set_background_color):
* xfaces.c (x_free_colors, x_free_dpy_colors)
(x_create_gc, unload_color):
* xselect.c (x_property_data_to_lisp):
* xsettings.c (parse_settings):
* xterm.c (x_copy_color, x_alloc_lighter_color, x_setup_relief_color)
(get_bits_and_offset): Adjust definition.
* frame.c (XParseGeometry): Adjust locals.
* lisp.h (toplevel): Adjust EMACS_UINT type definition.
* regex.h (toplevel): Likewise for reg_syntax_t.
Diffstat (limited to 'src/xsettings.c')
| -rw-r--r-- | src/xsettings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xsettings.c b/src/xsettings.c index e5a66c4cf0a..cff0c99548d 100644 --- a/src/xsettings.c +++ b/src/xsettings.c | |||
| @@ -393,7 +393,7 @@ get_prop_window (struct x_display_info *dpyinfo) | |||
| 393 | 393 | ||
| 394 | static int | 394 | static int |
| 395 | parse_settings (unsigned char *prop, | 395 | parse_settings (unsigned char *prop, |
| 396 | long unsigned int bytes, | 396 | unsigned long bytes, |
| 397 | struct xsettings *settings) | 397 | struct xsettings *settings) |
| 398 | { | 398 | { |
| 399 | Lisp_Object byteorder = Fbyteorder (); | 399 | Lisp_Object byteorder = Fbyteorder (); |