Skip to content

Commit

Permalink
patch 7.4.971
Browse files Browse the repository at this point in the history
Problem:    The asin() function can't be used.
Solution:   Sort the function table properly. (Watiko)
  • Loading branch information
brammool committed Dec 13, 2015
1 parent 9ec021a commit 099fdde
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/eval.c
Original file line number Diff line number Diff line change
Expand Up @@ -8073,11 +8073,13 @@ static struct fst
{"argidx", 0, 0, f_argidx},
{"arglistid", 0, 2, f_arglistid},
{"argv", 0, 1, f_argv},
#ifdef FEAT_FLOAT
{"asin", 1, 1, f_asin}, /* WJMc */
#endif
{"assert_equal", 2, 3, f_assert_equal},
{"assert_false", 1, 2, f_assert_false},
{"assert_true", 1, 2, f_assert_true},
#ifdef FEAT_FLOAT
{"asin", 1, 1, f_asin}, /* WJMc */
{"atan", 1, 1, f_atan},
{"atan2", 2, 2, f_atan2},
#endif
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -741,6 +741,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
971,
/**/
970,
/**/
Expand Down

0 comments on commit 099fdde

Please sign in to comment.