--- /indent ---


Filename: Makefile.am
Revision 1.21carlo 1999/12/31 12:15:37+5 -2
Date: Mon, 29 Nov 1999 09:43:01 -0600
From: forrest.cahoon@merrillcorp.com
Support for VMS/DECC.
Revision 1.20carlo 1999/12/31 01:46:15+1 -1
Oops, had forgotten to add README.VMS to the tar ball.
Revision 1.19carlo 1999/11/09 00:05:43+2 -3
Bumped version number to 2.2.5
Corrected or in which aclocal, autoheader, autoconf and automake need to
be called.

Filename: NEWS
Revision 1.27carlo 2000/01/16 15:43:14+1 -1
Updated release date of 2.2.5
Revision 1.26carlo 1999/12/31 15:59:21+17 -0
Updated NEWS for last two patches.
Revision 1.25carlo 1999/11/12 13:43:47+7 -1
Accept negative values for indent options.
Revision 1.24carlo 1999/11/12 12:35:12+22 -0
Date: Thu, 11 Nov 1999 00:23:59 -0000
From: "ALAN BORER" <alan_borer@lineone.net>
Subject: Indent Bug

The code subject to a "case :" is indented relative to the case label UNLESS
the option "-br" is asserted, in which case the code is indented relative to
the "switch " instruction.
I show below a screen dump illustrating this :-

C:\t>indent t.c -st -npro -cli8
switch (x)
{
case 1:
++x;
break;
}

C:\t>indent t.c -st -npro -cli8 -br
switch (x) {
case 1:
++x;
break;
}
Revision 1.23carlo 1999/11/09 01:22:05+5 -0
New option --space-after-parentheses (-prs) by Emil LAURENTIU
<emil@la.mine.nu>. Bug fixes in args.c and documentation update by me.

Filename: README.VMS
Revision 1.2carlo 1999/12/31 12:15:37+17 -5
Date: Mon, 29 Nov 1999 09:43:01 -0600
From: forrest.cahoon@merrillcorp.com
Support for VMS/DECC.

Filename: README.in
Revision 1.7carlo 2000/01/16 15:35:10+1 -1
Update of E-mail address
Revision 1.6carlo 1999/12/31 01:46:15+1 -1
Oops, had forgotten to add README.VMS to the tar ball.

Filename: args.c
Revision 1.20carlo 1999/11/12 13:43:47+2 -2
Accept negative values for indent options.
Revision 1.19carlo 1999/11/09 01:22:05+15 -7
New option --space-after-parentheses (-prs) by Emil LAURENTIU
<emil@la.mine.nu>. Bug fixes in args.c and documentation update by me.

Filename: config.h.vms.in
Revision 1.1carlo 1999/12/31 12:15:37None
Date: Mon, 29 Nov 1999 09:43:01 -0600
From: forrest.cahoon@merrillcorp.com
Support for VMS/DECC.

Filename: configure.in
Revision 1.24carlo 1999/11/09 00:05:43+1 -1
Bumped version number to 2.2.5
Corrected or in which aclocal, autoheader, autoconf and automake need to
be called.

Filename: indent.c
Revision 1.42carlo 1999/12/31 15:52:42+2 -1
Don't join procedure declaration lines that ends on a '('
when followed by a comment when --dont-break-procedure-type is used.
Ie: int func( // became int func( // char* c)
char* c) { }
{ }
Revision 1.41carlo 1999/11/12 00:17:54+4 -2
Allow non-ANSI `switch(i) { /*...*/ default: }' (no statement after last
case label).
Revision 1.40carlo 1999/11/09 01:22:05+6 -1
New option --space-after-parentheses (-prs) by Emil LAURENTIU
<emil@la.mine.nu>. Bug fixes in args.c and documentation update by me.

Filename: indent.h
Revision 1.19carlo 1999/11/09 01:22:06+3 -1
New option --space-after-parentheses (-prs) by Emil LAURENTIU
<emil@la.mine.nu>. Bug fixes in args.c and documentation update by me.

Filename: indent.lsm.in
Revision 1.3carlo 1999/12/18 22:46:24+4 -5
Fixed format of .lsm and E-mail address.

Filename: indent.texinfo
Revision 1.20carlo 1999/11/12 00:35:04+1 -1
Documentation correction for -br option.
Revision 1.19carlo 1999/11/09 01:22:06+33 -3
New option --space-after-parentheses (-prs) by Emil LAURENTIU
<emil@la.mine.nu>. Bug fixes in args.c and documentation update by me.

Filename: io.c
Revision 1.29carlo 2000/01/16 15:21:33+5 -2
Date: Thu, 16 Dec 1999 10:43:45 -0500 (EST)
From: Pavel Roskin <pavel_roskin@geocities.com>
Subject: Strange declaration alignment in C++

...
I have noticed that indent formats variable declarations quite differently
in C functions and C++ methods. If the function name doesn't contain two
colons, the variable names are placed on the same line and their types.
...

int
qs ()
{
int i;
}

int
q::s ()
{
int
i;
}

Date: Fri, 17 Dec 1999 12:33:34 -0500 (EST)
From: Pavel Roskin <pavel_roskin@geocities.com>
Subject: Strange declaration alignment in C++ - solved!

The attached patch fixes the problem with variables in C++ methods.
dumpline() used to compare "s_code_corresponds_to" with
"parser_state_tos->procname"
Revision 1.28carlo 1999/12/31 12:15:37+2 -2
Date: Mon, 29 Nov 1999 09:43:01 -0600
From: forrest.cahoon@merrillcorp.com
Support for VMS/DECC.
Revision 1.27carlo 1999/11/17 00:41:51+3 -3
Date: Tue, 16 Nov 1999 22:59:44 -0000
From: "ALAN BORER" <alan_borer@lineone.net>

Because I am now using DJGPP to compile the code, I now get a 32 bit DPMI
protected executable which is capable of processing files exceeding 64kByte.
Would you please consider incorporating in file IO.C the following patch :-
replace each of two instances of "#ifdef __MSDOS__" with
"#if defined (__MSDOS__) && ! defined (__DJGPP__)".

Regards
Alan Borer.
Revision 1.26carlo 1999/11/12 14:13:29+5 -3
Prefer to break before __attribute__ over after a comma (which might
be one paren level deeper even).

Filename: make-decc.com
Revision 1.1carlo 1999/12/31 12:15:37None
Date: Mon, 29 Nov 1999 09:43:01 -0600
From: forrest.cahoon@merrillcorp.com
Support for VMS/DECC.

Filename: parse.c
Revision 1.19carlo 1999/11/12 13:43:47+2 -4
Accept negative values for indent options.
Revision 1.18carlo 1999/11/12 12:35:13+18 -20
Date: Thu, 11 Nov 1999 00:23:59 -0000
From: "ALAN BORER" <alan_borer@lineone.net>
Subject: Indent Bug

The code subject to a "case :" is indented relative to the case label UNLESS
the option "-br" is asserted, in which case the code is indented relative to
the "switch " instruction.
I show below a screen dump illustrating this :-

C:\t>indent t.c -st -npro -cli8
switch (x)
{
case 1:
++x;
break;
}

C:\t>indent t.c -st -npro -cli8 -br
switch (x) {
case 1:
++x;
break;
}

Filename: sys.h
Revision 1.13carlo 1999/12/31 12:15:37+2 -2
Date: Mon, 29 Nov 1999 09:43:01 -0600
From: forrest.cahoon@merrillcorp.com
Support for VMS/DECC.


File made using version 1.52 of cvs2html by carlo at 100-01-16 16:47 and only showing data between revisions V2_2_4:HEAD.