diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2007-09-17 09:28:37 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2007-09-17 09:28:37 +0000 |
commit | 5c2bd4e040646f212484a6bc318cb1ee3e40d23c (patch) | |
tree | 8c0879c7efde812e7c2f52377b2c62d6a196dbc6 /usr.bin/make/lowparse.c | |
parent | abb245a8e4236a1315832a1f3c30be4cb450be65 (diff) |
kill extra spaces at end of line
Diffstat (limited to 'usr.bin/make/lowparse.c')
-rw-r--r-- | usr.bin/make/lowparse.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/make/lowparse.c b/usr.bin/make/lowparse.c index beaa0263a43..6fafc03d98c 100644 --- a/usr.bin/make/lowparse.c +++ b/usr.bin/make/lowparse.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: lowparse.c,v 1.19 2007/05/17 03:37:31 ray Exp $ */ +/* $OpenBSD: lowparse.c,v 1.20 2007/09/17 09:28:36 espie Exp $ */ /* low-level parsing functions. */ @@ -65,10 +65,10 @@ typedef struct { static IFile *current; /* IFile being parsed. */ -static LIST input_stack; /* Stack of IFiles waiting to be parsed +static LIST input_stack; /* Stack of IFiles waiting to be parsed * (includes and loop reparses) */ -/* IFile ctors. +/* IFile ctors. * * obj = new_ifile(filename, filehandle); * Create input object from filename, filehandle. */ @@ -81,7 +81,7 @@ static IFile *new_istring(char *, const char *, unsigned long); static void free_ifile(IFile *); -/* Handling basic character reading. +/* Handling basic character reading. * c = ParseReadc(); * New character c from current input stream, or EOF at end of stream. */ #define ParseReadc() current->ptr < current->end ? *current->ptr++ : newline() @@ -385,7 +385,7 @@ ParseSkipEmptyLines(Buffer linebuf) /* Parse_ReadNormalLine removes beginning and trailing blanks (but keeps * the first tab), handles escaped newlines, and skips over uninteresting - * lines. + * lines. * * The line number is incremented, which implies that continuation * lines are numbered with the last line number (we could do better, at a |