From 1b959e6a50a0e69c41f36f00b8d21c5e648c6e82 Mon Sep 17 00:00:00 2001 From: rlar Date: Sun, 1 Dec 2013 12:01:00 +0100 Subject: [PATCH] xpressn.c, drop XFU_V probably accidentally introduced in commit > Author: h_vogt > Date: Sun Feb 7 11:27:59 2010 +0000 > > improved numparam error message --- src/frontend/numparam/xpressn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/numparam/xpressn.c b/src/frontend/numparam/xpressn.c index 9edfdfba6..28260bbaf 100644 --- a/src/frontend/numparam/xpressn.c +++ b/src/frontend/numparam/xpressn.c @@ -97,7 +97,7 @@ initkeys(void) "and or not div mod defined"); scopy_up(&fmathS, "sqr sqrt sin cos exp ln arctan abs pow pwr max min int log sinh cosh" - " tanh ternary_fcn v agauss sgn gauss unif aunif limit ceil floor" + " tanh ternary_fcn agauss sgn gauss unif aunif limit ceil floor" " asin acos atan asinh acosh atanh tan"); } @@ -109,7 +109,7 @@ enum { enum { XFU_SQR = 1, XFU_SQRT, XFU_SIN, XFU_COS, XFU_EXP, XFU_LN, XFU_ARCTAN, XFU_ABS, XFU_POW, XFU_PWR, XFU_MAX, XFU_MIN, XFU_INT, XFU_LOG, XFU_SINH, XFU_COSH, - XFU_TANH, XFU_TERNARY_FCN, XFU_V, XFU_AGAUSS, XFU_SGN, XFU_GAUSS, XFU_UNIF, XFU_AUNIF, XFU_LIMIT, XFU_CEIL, XFU_FLOOR, + XFU_TANH, XFU_TERNARY_FCN, XFU_AGAUSS, XFU_SGN, XFU_GAUSS, XFU_UNIF, XFU_AUNIF, XFU_LIMIT, XFU_CEIL, XFU_FLOOR, XFU_ASIN, XFU_ACOS, XFU_ATAN, XFU_ASINH, XFU_ACOSH, XFU_ATANH, XFU_TAN, };