home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!mcsun!corton!ircam!fingerhu
- From: fingerhu@ircam.fr (Michel Fingerhut)
- Newsgroups: comp.lang.perl
- Subject: Patch to versions 2.1
- Message-ID: <1992Jul22.071956.27254@ircam.fr>
- Date: 22 Jul 92 07:19:56 GMT
- Organization: Inst. de Recherche et Coordination Acoustique/Musique, Paris
- Lines: 57
-
- A small-but-significant undetected typo (which still allowed the program to work
- in most cases) occurred. Please apply this patch...
-
- ------- versions.sh -------
- *** Standard Input Wed Jul 22 09:14:19 1992
- --- versions.sh Wed Jul 22 09:09:02 1992
- ***************
- *** 7,13 ****
- # manager@ircam.fr
-
- #
- ! # versions 2.1 IRCAM 7/21/92
- #
- # Modification history
- #
- --- 7,13 ----
- # manager@ircam.fr
-
- #
- ! # versions 2.2 IRCAM 7/22/92
- #
- # Modification history
- #
- ***************
- *** 58,64 ****
-
- # if -v, print version and exit
- if ($v) {
- ! print "2.1 IRCAM 7/21/92";
- exit;
- }
-
- --- 58,64 ----
-
- # if -v, print version and exit
- if ($v) {
- ! print "2.2 IRCAM 7/22/92";
- exit;
- }
-
- ***************
- *** 94,100 ****
- } else { # if tab, description section
-
- # perform macro substitution on all the line
- ! foreach $key (%macro) {
- s/\%$key/$macro{$key}/g;
- }
-
- --- 94,100 ----
- } else { # if tab, description section
-
- # perform macro substitution on all the line
- ! foreach $key (keys %macro) {
- s/\%$key/$macro{$key}/g;
- }
-
-