From 1d780ac4f8479c7b7a8d4699f25dc34488fb7c4d Mon Sep 17 00:00:00 2001 From: Miguel Pineiro Jr Date: Wed, 8 Dec 2021 18:42:59 -0500 Subject: [PATCH] Delete leading spaces surrounding closefile Aesthetics and convention aside, they confuse git diff into misidentifying closefile as filename. --- run.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/run.c b/run.c index 3ad9ecf..6bff3e1 100644 --- a/run.c +++ b/run.c @@ -1860,8 +1860,8 @@ const char *filename(FILE *fp) return "???"; } - Cell *closefile(Node **a, int n) - { +Cell *closefile(Node **a, int n) +{ Cell *x; size_t i; bool stat; @@ -1893,7 +1893,7 @@ const char *filename(FILE *fp) x = gettemp(); setfval(x, (Awkfloat) (stat ? -1 : 0)); return(x); - } +} void closeall(void) {