Andreas Schneider 2642091
Index: neovim-0.2.1/src/nvim/ex_cmds.c
Andreas Schneider 2642091
===================================================================
Andreas Schneider 2642091
--- neovim-0.2.1.orig/src/nvim/ex_cmds.c
Andreas Schneider 2642091
+++ neovim-0.2.1/src/nvim/ex_cmds.c
Andreas Schneider 2642091
@@ -109,6 +109,8 @@ typedef struct {
9bff118
 # include "ex_cmds.c.generated.h"
9bff118
 #endif
9bff118
 
9bff118
+bool do_sub_msg(bool count_only);
9bff118
+
9bff118
 /*
9bff118
  * ":ascii" and "ga".
9bff118
  */
Andreas Schneider 2642091
Index: neovim-0.2.1/src/nvim/normal.c
Andreas Schneider 2642091
===================================================================
Andreas Schneider 2642091
--- neovim-0.2.1.orig/src/nvim/normal.c
Andreas Schneider 2642091
+++ neovim-0.2.1/src/nvim/normal.c
Andreas Schneider 2642091
@@ -62,6 +62,22 @@
9bff118
 #include "nvim/os/time.h"
9bff118
 #include "nvim/os/input.h"
9bff118
 
9bff118
+bool
9bff118
+find_decl (
9bff118
+    char_u *ptr,
9bff118
+    size_t len,
9bff118
+    bool locally,
9bff118
+    bool thisblock,
9bff118
+    int flags_arg
9bff118
+);
9bff118
+
9bff118
+bool
9bff118
+get_visual_text (
9bff118
+    cmdarg_T *cap,
9bff118
+    char_u **pp,
9bff118
+    size_t *lenp
9bff118
+);
9bff118
+
9bff118
 typedef struct normal_state {
9bff118
   VimState state;
9bff118
   linenr_T conceal_old_cursor_line;