comparison src/proto.h @ 17458:cfdef48743ed v8.1.1727

patch 8.1.1727: code for viminfo support is spread out commit https://github.com/vim/vim/commit/defa067c54874dd987121dd7252c62755e0aebfa Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 21 19:25:37 2019 +0200 patch 8.1.1727: code for viminfo support is spread out Problem: Code for viminfo support is spread out. Solution: Move to code to viminfo.c. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/4686)
author Bram Moolenaar <Bram@vim.org>
date Sun, 21 Jul 2019 19:30:06 +0200
parents 635d7f5010b8
children e00d12c085a5
comparison
equal deleted inserted replaced
17457:3a368ff28a0b 17458:cfdef48743ed
105 # include "menu.pro" 105 # include "menu.pro"
106 # endif 106 # endif
107 # ifdef FEAT_ARABIC 107 # ifdef FEAT_ARABIC
108 # include "arabic.pro" 108 # include "arabic.pro"
109 # endif 109 # endif
110 # ifdef FEAT_VIMINFO
111 # include "viminfo.pro"
112 # endif
110 113
111 /* These prototypes cannot be produced automatically. */ 114 /* These prototypes cannot be produced automatically. */
112 int smsg(const char *, ...) 115 int smsg(const char *, ...)
113 #ifdef USE_PRINTF_FORMAT_ATTRIBUTE 116 #ifdef USE_PRINTF_FORMAT_ATTRIBUTE
114 __attribute__((format(printf, 1, 0))) 117 __attribute__((format(printf, 1, 0)))