fixed a couple of minor compilation errors in editfns.c
This commit is contained in:
parent
14e7b3a918
commit
2573153f50
1 changed files with 2 additions and 2 deletions
|
@ -3212,7 +3212,7 @@ usage: (format STRING &rest OBJECTS) */)
|
|||
string itself, will not be used. Element NARGS, corresponding to
|
||||
no argument, *will* be assigned to in the case that a `%' and `.'
|
||||
occur after the final format specifier. */
|
||||
int precision[nargs];
|
||||
int * precision = (int *) (_alloca(nargs * sizeof (int)));
|
||||
int longest_format;
|
||||
Lisp_Object val;
|
||||
struct info
|
||||
|
@ -3388,7 +3388,7 @@ usage: (format STRING &rest OBJECTS) */)
|
|||
/* Filter out flag value of -1. This is a conditional with omitted
|
||||
operand: the value is PRECISION[N] if the conditional is >=0 and
|
||||
otherwise is 0. */
|
||||
thissize = MAX_10_EXP + 100 + (precision[n] > 0 ? : 0);
|
||||
thissize = MAX_10_EXP + 100 + ((precision[n] > 0)?precision[n]:0);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue