diff options
author | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-06-04 15:03:29 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-06-28 14:44:17 -0400 |
commit | 8c51804d525b771e0751603d0cb4470249dc0ae0 (patch) | |
tree | 0ddf05ea55842969d23a9f1dfe41c980150c3fca /src/nvim/globals.h | |
parent | bbb649ac696e2c8f8ec3a1cd46e8b1b1803ce9d1 (diff) | |
download | rneovim-8c51804d525b771e0751603d0cb4470249dc0ae0.tar.gz rneovim-8c51804d525b771e0751603d0cb4470249dc0ae0.tar.bz2 rneovim-8c51804d525b771e0751603d0cb4470249dc0ae0.zip |
libcall: remove libcall ifdefs
Remove all the legacy code that related to mch_libcall in some way.
os_libcall is implemented on top of libuv now.
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index 73b261780c..8394f57f51 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -1006,9 +1006,7 @@ EXTERN char_u e_isadir2[] INIT(= N_("E17: \"%s\" is a directory")); EXTERN char_u e_invjob[] INIT(= N_("E900: Invalid job id")); EXTERN char_u e_jobtblfull[] INIT(= N_("E901: Job table is full")); EXTERN char_u e_jobexe[] INIT(= N_("E902: \"%s\" is not an executable")); -#ifdef FEAT_LIBCALL EXTERN char_u e_libcall[] INIT(= N_("E364: Library call failed for \"%s()\"")); -#endif EXTERN char_u e_markinval[] INIT(= N_("E19: Mark has invalid line number")); EXTERN char_u e_marknotset[] INIT(= N_("E20: Mark not set")); EXTERN char_u e_modifiable[] INIT(= N_( |