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/lisp.h | |
| 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/lisp.h')
| -rw-r--r-- | src/lisp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index e1a6fc7c91a..c8b9497a314 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -71,7 +71,7 @@ typedef unsigned long long int EMACS_UINT; | |||
| 71 | # define pI "ll" | 71 | # define pI "ll" |
| 72 | # elif INT_MAX < LONG_MAX | 72 | # elif INT_MAX < LONG_MAX |
| 73 | typedef long int EMACS_INT; | 73 | typedef long int EMACS_INT; |
| 74 | typedef unsigned long int EMACS_UINT; | 74 | typedef unsigned long EMACS_UINT; |
| 75 | # define EMACS_INT_MAX LONG_MAX | 75 | # define EMACS_INT_MAX LONG_MAX |
| 76 | # define pI "l" | 76 | # define pI "l" |
| 77 | # else | 77 | # else |