Allow CALC to be 40 characters. Increase rpbuf from 184 to 200

This commit is contained in:
Marty Kraimer
1997-03-12 21:38:38 +00:00
parent 5f1b0c19a8
commit fb8e026551
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -148,7 +148,7 @@ static long init_record(pcalc,pass)
int i;
double *pvalue;
short error_number;
char rpbuf[184];
char rpbuf[200];
if (pass==0) return(0);
@@ -198,7 +198,7 @@ static long special(paddr,after)
struct calcRecord *pcalc = (struct calcRecord *)(paddr->precord);
int special_type = paddr->special;
short error_number;
char rpbuf[184];
char rpbuf[200];
if(!after) return(0);
switch(special_type) {
+3 -3
View File
@@ -9,7 +9,7 @@ recordtype(calc) {
promptgroup(GUI_CALC)
special(SPC_CALC)
pp(TRUE)
size(36)
size(40)
}
field(INPA,DBF_INLINK) {
prompt("Input A")
@@ -286,7 +286,7 @@ recordtype(calc) {
prompt("Reverse Polish Calc")
special(SPC_NOMOD)
interest(4)
size(184)
extra("char rpcl[184]")
size(200)
extra("char rpcl[200]")
}
}