summaryrefslogtreecommitdiff
path: root/src/regex.h
diff options
context:
space:
mode:
authorDmitry Antipov <dmantipov@yandex.ru>2013-10-29 20:08:08 +0400
committerDmitry Antipov <dmantipov@yandex.ru>2013-10-29 20:08:08 +0400
commit2d9783e0b938d0e3550fee7efbb3c6b8b5f18462 (patch)
tree09159c8a6b0b4d12bc00a9c21f80f641f69bdb47 /src/regex.h
parent23af34b00ca14782ba5d1bbada43cd26962739b4 (diff)
downloademacs-2d9783e0b938d0e3550fee7efbb3c6b8b5f18462.tar.gz
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/regex.h')
-rw-r--r--src/regex.h2
1 files changed, 1 insertions, 1 deletions
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. */