Created
December 13, 2015 09:09
-
-
Save watiko/dbe85958f45565f5c622 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/eval.c b/src/eval.c | |
index ef0ea5e..2668f3d 100644 | |
--- a/src/eval.c | |
+++ b/src/eval.c | |
@@ -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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment