From: Jorge G. <cl...@us...> - 2007-12-16 12:25:02
|
Update of /cvsroot/easycalc/easycalc/mlib In directory sc8-pr-cvs17.sourceforge.net:/tmp/cvs-serv7738/easycalc/mlib Modified Files: konvert.c Log Message: added 'axis' function Index: konvert.c =================================================================== RCS file: /cvsroot/easycalc/easycalc/mlib/konvert.c,v retrieving revision 1.67 retrieving revision 1.68 diff -C2 -d -r1.67 -r1.68 *** konvert.c 4 Oct 2006 00:39:17 -0000 1.67 --- konvert.c 16 Dec 2007 12:24:51 -0000 1.68 *************** *** 44,47 **** --- 44,53 ---- #include "chkstack.h" + #ifdef GRAPHS_ENABLED + + #include "grprefs.h" + + #endif + #ifdef SPECFUN_ENABLED *************** *** 174,177 **** --- 180,186 ---- {"nextprime", MATH_NEXTPRIME, math_primes, 1, true, true}, {"prevprime", MATH_PREVPRIME, math_primes, 1, true, true}, + #ifdef GRAPHS_ENABLED + {"axis",0,set_axis,0}, + #endif #ifdef SPECFUN_ENABLED {"fzero",MATH_FZERO,integ_fsolve,0}, *************** *** 316,320 **** {"%",4,FUNC_MOD}, {" xor ",3,FUNC_XOR}, ! {"¥",3,FUNC_XOR}, {"\2",6,FUNC_CONJ}, /* The apostrophe, it shouldn't be recognized * as a normal operator */ --- 325,329 ---- {"%",4,FUNC_MOD}, {" xor ",3,FUNC_XOR}, ! {"",3,FUNC_XOR}, {"\2",6,FUNC_CONJ}, /* The apostrophe, it shouldn't be recognized * as a normal operator */ |