Re: 81-lang-extensions.patch

2001-04-10 Thread Tom Tromey
"Akim" == Akim Demaille [EMAIL PROTECTED] writes: Akim * automake.in: (Language): Add attribute `extensions'. Akim (Automake): Pass a hash to `register_language' instead of a Akim list of pseudo assignments. Akim (register_language): Adjust. Akim (finish_languages): Initialize

Re: 81-lang-extensions.patch

2001-03-23 Thread Raja R Harinath
Hi, Akim Demaille [EMAIL PROTECTED] writes: +while (my ($attr, $value) = each %option) { [snip] + if ($attr eq 'ansi') { + $lang_obj-ansi ($value); } + elsif ($attr eq 'autodep') { + $lang_obj-autodep ($value); } + elsif

Re: 81-lang-extensions.patch

2001-03-23 Thread Akim Demaille
| Hi, | Akim Demaille [EMAIL PROTECTED] writes: | +while (my ($attr, $value) = each %option) | { | [snip] | + if ($attr eq 'ansi') |{ | + $lang_obj-ansi ($value); | } | + elsif ($attr eq 'autodep') | { | + $lang_obj-autodep ($value); | } |

Re: 81-lang-extensions.patch

2001-03-23 Thread Raja R Harinath
Hi, Akim Demaille [EMAIL PROTECTED] writes: Raja R Harinath [EMAIL PROTECTED] writes: [snip] | Wouldn't this be more compact and readable without the loop? | | $lang_obj-ansi($options{'ansi'})if exists $options{'ansi'}; | $lang_obj-autodep ($options{'autodep'}) if exists