diff options
author | jmallett <jmallett@FreeBSD.org> | 2002-09-17 21:29:06 +0000 |
---|---|---|
committer | jmallett <jmallett@FreeBSD.org> | 2002-09-17 21:29:06 +0000 |
commit | 64620c0f765340361b6e1714f4b25e815271c95e (patch) | |
tree | e486dca4f9bd4c33083e88473624273b6c450c4d /usr.bin/make/for.c | |
parent | a336071222c6757d8ada53c28f4d6743131fb475 (diff) | |
download | FreeBSD-src-64620c0f765340361b6e1714f4b25e815271c95e.zip FreeBSD-src-64620c0f765340361b6e1714f4b25e815271c95e.tar.gz |
#define<space> -> #define<tab>
Diffstat (limited to 'usr.bin/make/for.c')
-rw-r--r-- | usr.bin/make/for.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/make/for.c b/usr.bin/make/for.c index 129d731..de34812 100644 --- a/usr.bin/make/for.c +++ b/usr.bin/make/for.c @@ -175,7 +175,7 @@ For_Eval (line) buf = Buf_Init(0); sub = Var_Subst(NULL, ptr, VAR_GLOBAL, FALSE); -#define ADDWORD() \ +#define ADDWORD() \ Buf_AddBytes(buf, ptr - wrd, (Byte *) wrd), \ Buf_AddByte(buf, (Byte) '\0'), \ Lst_AtFront(forLst, (void *) Buf_GetAll(buf, &varlen)), \ |