[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: 04-map.patch
From: |
Akim Demaille |
Subject: |
Re: 04-map.patch |
Date: |
13 May 2001 19:17:41 +0200 |
User-agent: |
Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) |
- my %clean_files;
- grep { $clean_files{"$infobase.$_"} = 1 } @clean_suffixes;
+ # FIXME: I don't understand why, but I can't use "$infobase.$_" => 1.
+ my %clean_files = map { "$infobase" . ".$_" => 1 } @clean_suffixes;
grep { delete $clean_files{"$infobase.$_"} } @syncodeindexes;
This last one (not patched), I'm not sure how to write it elegantly.