Delete leading spaces surrounding closefile
Aesthetics and convention aside, they confuse git diff into misidentifying closefile as filename.
This commit is contained in:
parent
01749f04cf
commit
1d780ac4f8
6
run.c
6
run.c
@ -1860,8 +1860,8 @@ const char *filename(FILE *fp)
|
|||||||
return "???";
|
return "???";
|
||||||
}
|
}
|
||||||
|
|
||||||
Cell *closefile(Node **a, int n)
|
Cell *closefile(Node **a, int n)
|
||||||
{
|
{
|
||||||
Cell *x;
|
Cell *x;
|
||||||
size_t i;
|
size_t i;
|
||||||
bool stat;
|
bool stat;
|
||||||
@ -1893,7 +1893,7 @@ const char *filename(FILE *fp)
|
|||||||
x = gettemp();
|
x = gettemp();
|
||||||
setfval(x, (Awkfloat) (stat ? -1 : 0));
|
setfval(x, (Awkfloat) (stat ? -1 : 0));
|
||||||
return(x);
|
return(x);
|
||||||
}
|
}
|
||||||
|
|
||||||
void closeall(void)
|
void closeall(void)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user