aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEliseo Martínez <eliseomarmol@gmail.com>2014-05-01 12:43:41 +0200
committerJustin M. Keyes <justinkz@gmail.com>2014-05-03 10:04:49 -0400
commitad966753d40a16ff77e5056fd95a5716326b0891 (patch)
treeb677451c9b80b6ef1de77d08a25c0906002ae119 /src
parentcb7fb8c008e3da673014952b960bf4604af7b210 (diff)
downloadrneovim-ad966753d40a16ff77e5056fd95a5716326b0891.tar.gz
rneovim-ad966753d40a16ff77e5056fd95a5716326b0891.tar.bz2
rneovim-ad966753d40a16ff77e5056fd95a5716326b0891.zip
Remove project int types: Case int_u: Replace with uint32_t.
- Replace int_u with uint32_t (same size, should give no problems). In fact, only usage found seems to be dead code (some functions in ui.h seem not to be used anymore). - Remove int_u typedef. Requested in #459.
Diffstat (limited to 'src')
-rw-r--r--src/types.h1
-rw-r--r--src/ui.h2
2 files changed, 1 insertions, 2 deletions
diff --git a/src/types.h b/src/types.h
index a038e2d5fc..14ffd9fbb7 100644
--- a/src/types.h
+++ b/src/types.h
@@ -15,6 +15,5 @@
* already defined, so we use char_u to avoid trouble.
*/
typedef unsigned char char_u;
-typedef unsigned int int_u;
#endif /* NEOVIM_TYPES_H */
diff --git a/src/ui.h b/src/ui.h
index cd23cff049..1fbf956234 100644
--- a/src/ui.h
+++ b/src/ui.h
@@ -21,7 +21,7 @@ int clip_isautosel_plus(void);
void clip_modeless(int button, int is_click, int is_drag);
void clip_start_selection(int col, int row, int repeated_click);
void clip_process_selection(int button, int col, int row,
- int_u repeated_click);
+ uint32_t repeated_click);
void clip_may_redraw_selection(int row, int col, int len);
void clip_clear_selection(VimClipboard *cbd);
void clip_may_clear_selection(int row1, int row2);