mirror of
https://github.com/neovim/neovim.git
synced 2025-09-15 15:58:17 +00:00
Remove __ARGS macro. Close #205
This is a squash of all commits sent to #81. - Remove unused undef of __ARGS. - Fix mch_rename declaration. - Follow changes related to moved & extracted files. - Properly indent function declarations of getchar.h and quickfix.c.
This commit is contained in:

committed by
Thiago de Arruda

parent
2bd6d44403
commit
d9283c4927
54
src/normal.h
54
src/normal.h
@@ -1,32 +1,32 @@
|
||||
#ifndef NEOVIM_NORMAL_H
|
||||
#define NEOVIM_NORMAL_H
|
||||
/* normal.c */
|
||||
void init_normal_cmds __ARGS((void));
|
||||
void normal_cmd __ARGS((oparg_T *oap, int toplevel));
|
||||
void do_pending_operator __ARGS((cmdarg_T *cap, int old_col, int gui_yank));
|
||||
int do_mouse __ARGS((oparg_T *oap, int c, int dir, long count, int fixindent));
|
||||
void check_visual_highlight __ARGS((void));
|
||||
void end_visual_mode __ARGS((void));
|
||||
void reset_VIsual_and_resel __ARGS((void));
|
||||
void reset_VIsual __ARGS((void));
|
||||
int find_ident_under_cursor __ARGS((char_u **string, int find_type));
|
||||
int find_ident_at_pos __ARGS((win_T *wp, linenr_T lnum, colnr_T startcol,
|
||||
char_u **string,
|
||||
int find_type));
|
||||
void clear_showcmd __ARGS((void));
|
||||
int add_to_showcmd __ARGS((int c));
|
||||
void add_to_showcmd_c __ARGS((int c));
|
||||
void push_showcmd __ARGS((void));
|
||||
void pop_showcmd __ARGS((void));
|
||||
void do_check_scrollbind __ARGS((int check));
|
||||
void check_scrollbind __ARGS((linenr_T topline_diff, long leftcol_diff));
|
||||
int find_decl __ARGS((char_u *ptr, int len, int locally, int thisblock,
|
||||
int searchflags));
|
||||
void scroll_redraw __ARGS((int up, long count));
|
||||
void handle_tabmenu __ARGS((void));
|
||||
void do_nv_ident __ARGS((int c1, int c2));
|
||||
int get_visual_text __ARGS((cmdarg_T *cap, char_u **pp, int *lenp));
|
||||
void start_selection __ARGS((void));
|
||||
void may_start_select __ARGS((int c));
|
||||
void init_normal_cmds(void);
|
||||
void normal_cmd(oparg_T *oap, int toplevel);
|
||||
void do_pending_operator(cmdarg_T *cap, int old_col, int gui_yank);
|
||||
int do_mouse(oparg_T *oap, int c, int dir, long count, int fixindent);
|
||||
void check_visual_highlight(void);
|
||||
void end_visual_mode(void);
|
||||
void reset_VIsual_and_resel(void);
|
||||
void reset_VIsual(void);
|
||||
int find_ident_under_cursor(char_u **string, int find_type);
|
||||
int find_ident_at_pos(win_T *wp, linenr_T lnum, colnr_T startcol,
|
||||
char_u **string,
|
||||
int find_type);
|
||||
void clear_showcmd(void);
|
||||
int add_to_showcmd(int c);
|
||||
void add_to_showcmd_c(int c);
|
||||
void push_showcmd(void);
|
||||
void pop_showcmd(void);
|
||||
void do_check_scrollbind(int check);
|
||||
void check_scrollbind(linenr_T topline_diff, long leftcol_diff);
|
||||
int find_decl(char_u *ptr, int len, int locally, int thisblock,
|
||||
int searchflags);
|
||||
void scroll_redraw(int up, long count);
|
||||
void handle_tabmenu(void);
|
||||
void do_nv_ident(int c1, int c2);
|
||||
int get_visual_text(cmdarg_T *cap, char_u **pp, int *lenp);
|
||||
void start_selection(void);
|
||||
void may_start_select(int c);
|
||||
/* vim: set ft=c : */
|
||||
#endif /* NEOVIM_NORMAL_H */
|
||||
|
Reference in New Issue
Block a user