neovim/neovim-0.2.0-gcc-prototype.patch
Ronan Chagas 01192d2515 Accepting request 630074 from home:mcepl:work
- Add default system-wide configuration file to /etc/xdg/nvim/sysinit.vim (boo#1098800)
- Add proper location of the default SPEC file templates
- Add some packages needed for more robust builds
  * neovim.patch fix building system
  * neovim-0.1.7-bitop.patch for use external bit module
  * neovim-0.2.0-gcc-prototype.patch fix build issue on ppc64

OBS-URL: https://build.opensuse.org/request/show/630074
OBS-URL: https://build.opensuse.org/package/show/editors/neovim?expand=0&rev=35
2018-08-18 15:11:48 +00:00

37 lines
628 B
Diff

--- a/src/nvim/ex_cmds.c
+++ b/src/nvim/ex_cmds.c
@@ -67,6 +67,8 @@
#include "nvim/os/input.h"
#include "nvim/os/time.h"
+bool do_sub_msg(bool count_only);
+
/*
* Struct to hold the sign properties.
*/
--- a/src/nvim/normal.c
+++ b/src/nvim/normal.c
@@ -62,6 +62,22 @@
#include "nvim/os/time.h"
#include "nvim/os/input.h"
+bool
+find_decl (
+ char_u *ptr,
+ size_t len,
+ bool locally,
+ bool thisblock,
+ int flags_arg
+);
+
+bool
+get_visual_text (
+ cmdarg_T *cap,
+ char_u **pp,
+ size_t *lenp
+);
+
typedef struct normal_state {
VimState state;
linenr_T conceal_old_cursor_line;