We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb698d0 commit 85b0957Copy full SHA for 85b0957
2 files changed
src/scriptfile.c
@@ -95,11 +95,13 @@ estack_pop(void)
95
char_u *
96
estack_sfile(void)
97
{
98
+ estack_T *entry;
99
+#ifdef FEAT_EVAL
100
int len;
101
int idx;
- estack_T *entry;
102
char *res;
103
int done;
104
+#endif
105
106
entry = ((estack_T *)exestack.ga_data) + exestack.ga_len - 1;
107
if (entry->es_name == NULL)
src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
742
743
static int included_patches[] =
744
{ /* Add new patch number below this line */
745
+/**/
746
+ 59,
747
/**/
748
58,
749
0 commit comments