From 2d9783e0b938d0e3550fee7efbb3c6b8b5f18462 Mon Sep 17 00:00:00 2001 From: Dmitry Antipov Date: Tue, 29 Oct 2013 20:08:08 +0400 Subject: 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. --- src/regex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/regex.h') diff --git a/src/regex.h b/src/regex.h index bb737df5239..8f5bb56fbd1 100644 --- a/src/regex.h +++ b/src/regex.h @@ -40,7 +40,7 @@ extern "C" { The bits are given in alphabetical order, and the definitions shifted by one from the previous bit; thus, when we add or remove a bit, only one other definition need change. */ -typedef unsigned long int reg_syntax_t; +typedef unsigned long reg_syntax_t; /* If this bit is not set, then \ inside a bracket expression is literal. If set, then such a \ quotes the following character. */ -- cgit v1.2.1