Mercurial > emacs
comparison lib-src/=rcs2log @ 1800:05cb79ebdb23
Add copyright and authorship notices.
author | Paul Eggert <eggert@twinsun.com> |
---|---|
date | Fri, 15 Jan 1993 05:33:29 +0000 |
parents | 8abf83cc14b1 |
children | 66371f0b8aff |
comparison
equal
deleted
inserted
replaced
1799:8e52d9366e6c | 1800:05cb79ebdb23 |
---|---|
1 #!/bin/sh | 1 #!/bin/sh |
2 | 2 |
3 # RCS to ChangeLog generator | 3 # RCS to ChangeLog generator |
4 | |
5 # $Id: rcs2log,v 1.2 1992/09/27 01:55:21 roland Exp $ | |
6 | 4 |
7 # Generate a change log prefix from RCS/* and the existing ChangeLog (if any). | 5 # Generate a change log prefix from RCS/* and the existing ChangeLog (if any). |
8 # Output the new prefix to standard output. | 6 # Output the new prefix to standard output. |
9 # You can edit this prefix by hand, and then prepend it to ChangeLog. | 7 # You can edit this prefix by hand, and then prepend it to ChangeLog. |
10 | 8 |
11 # Ignore log entries that start with `#'. | 9 # Ignore log entries that start with `#'. |
12 # Clump together log entries that start with `{topic} ', | 10 # Clump together log entries that start with `{topic} ', |
13 # where `topic' contains neither white space nor `}'. | 11 # where `topic' contains neither white space nor `}'. |
12 | |
13 # Author: Paul Eggert <eggert@twinsun.com> | |
14 | |
15 # $Id: rcs2log,v 1.8 1992/09/27 01:55:21 roland Exp eggert $ | |
16 | |
17 # Copyright 1992, 1993 Free Software Foundation, Inc. | |
18 | |
19 # This program is free software; you can redistribute it and/or modify | |
20 # it under the terms of the GNU General Public License as published by | |
21 # the Free Software Foundation; either version 2, or (at your option) | |
22 # any later version. | |
23 # | |
24 # This program is distributed in the hope that it will be useful, | |
25 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
26 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
27 # GNU General Public License for more details. | |
28 # | |
29 # You should have received a copy of the GNU General Public License | |
30 # along with this program; see the file COPYING. If not, write to | |
31 # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
32 | |
14 | 33 |
15 # Parse options. | 34 # Parse options. |
16 | 35 |
17 # defaults | 36 # defaults |
18 indent=8 # indent of log line | 37 indent=8 # indent of log line |