|
Filename: Makefile.am | |||
| Revision 1.21 | carlo | 1999/12/31 12:15:37 | +5 -2 |
Date: Mon, 29 Nov 1999 09:43:01 -0600From: forrest.cahoon@merrillcorp.comSupport for VMS/DECC. | |||
| Revision 1.20 | carlo | 1999/12/31 01:46:15 | +1 -1 |
Oops, had forgotten to add README.VMS to the tar ball. | |||
| Revision 1.19 | carlo | 1999/11/09 00:05:43 | +2 -3 |
Bumped version number to 2.2.5Corrected or in which aclocal, autoheader, autoconf and automake need tobe called. | |||
|
Filename: NEWS | |||
| Revision 1.27 | carlo | 2000/01/16 15:43:14 | +1 -1 |
Updated release date of 2.2.5 | |||
| Revision 1.26 | carlo | 1999/12/31 15:59:21 | +17 -0 |
Updated NEWS for last two patches. | |||
| Revision 1.25 | carlo | 1999/11/12 13:43:47 | +7 -1 |
Accept negative values for indent options. | |||
| Revision 1.24 | carlo | 1999/11/12 12:35:12 | +22 -0 |
Date: Thu, 11 Nov 1999 00:23:59 -0000From: "ALAN BORER" <alan_borer@lineone.net>Subject: Indent BugThe code subject to a "case :" is indented relative to the case label UNLESSthe option "-br" is asserted, in which case the code is indented relative tothe "switch " instruction.I show below a screen dump illustrating this :-C:\t>indent t.c -st -npro -cli8switch (x) { case 1: ++x; break; }C:\t>indent t.c -st -npro -cli8 -brswitch (x) { case 1: ++x; break;} | |||
| Revision 1.23 | carlo | 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.2 | carlo | 1999/12/31 12:15:37 | +17 -5 |
Date: Mon, 29 Nov 1999 09:43:01 -0600From: forrest.cahoon@merrillcorp.comSupport for VMS/DECC. | |||
|
Filename: README.in | |||
| Revision 1.7 | carlo | 2000/01/16 15:35:10 | +1 -1 |
Update of E-mail address | |||
| Revision 1.6 | carlo | 1999/12/31 01:46:15 | +1 -1 |
Oops, had forgotten to add README.VMS to the tar ball. | |||
|
Filename: args.c | |||
| Revision 1.20 | carlo | 1999/11/12 13:43:47 | +2 -2 |
Accept negative values for indent options. | |||
| Revision 1.19 | carlo | 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.1 | carlo | 1999/12/31 12:15:37 | None |
Date: Mon, 29 Nov 1999 09:43:01 -0600From: forrest.cahoon@merrillcorp.comSupport for VMS/DECC. | |||
|
Filename: configure.in | |||
| Revision 1.24 | carlo | 1999/11/09 00:05:43 | +1 -1 |
Bumped version number to 2.2.5Corrected or in which aclocal, autoheader, autoconf and automake need tobe called. | |||
|
Filename: indent.c | |||
| Revision 1.42 | carlo | 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.41 | carlo | 1999/11/12 00:17:54 | +4 -2 |
Allow non-ANSI `switch(i) { /*...*/ default: }' (no statement after lastcase label). | |||
| Revision 1.40 | carlo | 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.19 | carlo | 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.3 | carlo | 1999/12/18 22:46:24 | +4 -5 |
Fixed format of .lsm and E-mail address. | |||
|
Filename: indent.texinfo | |||
| Revision 1.20 | carlo | 1999/11/12 00:35:04 | +1 -1 |
Documentation correction for -br option. | |||
| Revision 1.19 | carlo | 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.29 | carlo | 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 differentlyin C functions and C++ methods. If the function name doesn't contain twocolons, the variable names are placed on the same line and their types....intqs (){ int i;}intq::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.28 | carlo | 1999/12/31 12:15:37 | +2 -2 |
Date: Mon, 29 Nov 1999 09:43:01 -0600From: forrest.cahoon@merrillcorp.comSupport for VMS/DECC. | |||
| Revision 1.27 | carlo | 1999/11/17 00:41:51 | +3 -3 |
Date: Tue, 16 Nov 1999 22:59:44 -0000From: "ALAN BORER" <alan_borer@lineone.net>Because I am now using DJGPP to compile the code, I now get a 32 bit DPMIprotected 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.26 | carlo | 1999/11/12 14:13:29 | +5 -3 |
Prefer to break before __attribute__ over after a comma (which mightbe one paren level deeper even). | |||
|
Filename: make-decc.com | |||
| Revision 1.1 | carlo | 1999/12/31 12:15:37 | None |
Date: Mon, 29 Nov 1999 09:43:01 -0600From: forrest.cahoon@merrillcorp.comSupport for VMS/DECC. | |||
|
Filename: parse.c | |||
| Revision 1.19 | carlo | 1999/11/12 13:43:47 | +2 -4 |
Accept negative values for indent options. | |||
| Revision 1.18 | carlo | 1999/11/12 12:35:13 | +18 -20 |
Date: Thu, 11 Nov 1999 00:23:59 -0000From: "ALAN BORER" <alan_borer@lineone.net>Subject: Indent BugThe code subject to a "case :" is indented relative to the case label UNLESSthe option "-br" is asserted, in which case the code is indented relative tothe "switch " instruction.I show below a screen dump illustrating this :-C:\t>indent t.c -st -npro -cli8switch (x) { case 1: ++x; break; }C:\t>indent t.c -st -npro -cli8 -brswitch (x) { case 1: ++x; break;} | |||
|
Filename: sys.h | |||
| Revision 1.13 | carlo | 1999/12/31 12:15:37 | +2 -2 |
Date: Mon, 29 Nov 1999 09:43:01 -0600From: forrest.cahoon@merrillcorp.comSupport 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.