Skip to content

Commit 2d9d409

Browse files
committed
patch 8.2.0464: typos and other small problems
Problem: Typos and other small problems. Solution: Fix the typos. Add missing file to distribution.
1 parent 191acfd commit 2d9d409

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

src/evalfunc.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -280,13 +280,11 @@ ret_number(int argcount UNUSED, type_T **argtypes UNUSED)
280280
{
281281
return &t_number;
282282
}
283-
#ifdef FEAT_FLOAT
284283
static type_T *
285284
ret_float(int argcount UNUSED, type_T **argtypes UNUSED)
286285
{
287286
return &t_float;
288287
}
289-
#endif
290288
static type_T *
291289
ret_string(int argcount UNUSED, type_T **argtypes UNUSED)
292290
{
@@ -336,7 +334,6 @@ ret_partial_void(int argcount UNUSED, type_T **argtypes UNUSED)
336334
{
337335
return &t_partial_void;
338336
}
339-
#ifdef FEAT_JOB_CHANNEL
340337
static type_T *
341338
ret_channel(int argcount UNUSED, type_T **argtypes UNUSED)
342339
{
@@ -347,7 +344,6 @@ ret_job(int argcount UNUSED, type_T **argtypes UNUSED)
347344
{
348345
return &t_job;
349346
}
350-
#endif
351347

352348
static type_T *ret_f_function(int argcount, type_T **argtypes);
353349

src/globals.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,9 +384,7 @@ EXTERN type_T t_void INIT4(VAR_VOID, 0, NULL, NULL);
384384
EXTERN type_T t_bool INIT4(VAR_BOOL, 0, NULL, NULL);
385385
EXTERN type_T t_special INIT4(VAR_SPECIAL, 0, NULL, NULL);
386386
EXTERN type_T t_number INIT4(VAR_NUMBER, 0, NULL, NULL);
387-
# ifdef FEAT_FLOAT
388387
EXTERN type_T t_float INIT4(VAR_FLOAT, 0, NULL, NULL);
389-
# endif
390388
EXTERN type_T t_string INIT4(VAR_STRING, 0, NULL, NULL);
391389
EXTERN type_T t_blob INIT4(VAR_BLOB, 0, NULL, NULL);
392390
EXTERN type_T t_job INIT4(VAR_JOB, 0, NULL, NULL);

src/version.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -738,6 +738,10 @@ static char *(features[]) =
738738

739739
static int included_patches[] =
740740
{ /* Add new patch number below this line */
741+
/**/
742+
463,
743+
/**/
744+
462,
741745
/**/
742746
462,
743747
/**/

0 commit comments

Comments
 (0)