automake-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

FYI: hidden-index-typo.patch


From: Alexandre Duret-Lutz
Subject: FYI: hidden-index-typo.patch
Date: 09 Nov 2001 22:52:53 +0100
User-agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7

Ahem, a few days ago I've commited this:

-    my %hidden_index =
-      (
-       # deffn => *.fns.
-       'fn' => 'fns',     'un' => 'fns',
-       'typefn' => 'fns', 'typefun' => 'fns',
-       'mac' => 'fns', 'spec' => 'fns',
-       'op' => 'fns',  'typeop' => 'fns',
-       'method' => 'fns', 'typemethod' => 'fns',
-
-       'vr' => 'vrs', 'var' => 'vrs',
-       'typevr' => 'vrs', 'typevar' => 'vrs',
-       'opt' => 'vrs',
-       'cv' => 'vrs',
-       'ivar' => 'vrs', 'typeivar' => 'vrs',
-
-       'tp' => 'tps'
-      );
+    my %hidden_index = (tp => 'tps');
+    $hidden_index{$_} = 'fns' foreach qw(fn un typefn typefun max spec
+                                        op typeop method typemethod);
+    $hidden_index{$_} = 'fns' foreach qw(vr var typevr typevar opt cv
+                                        ivar typeivar);

That's too stupid.

2001-11-09  Alexandre Duret-Lutz  <address@hidden>

        * automake.in (scan_texinfo_file): Typo from 2001-11-05.

Index: automake.in
===================================================================
RCS file: /cvs/automake/automake/automake.in,v
retrieving revision 1.1232
diff -u -r1.1232 automake.in
--- automake.in 2001/11/09 17:17:46     1.1232
+++ automake.in 2001/11/09 21:50:05
@@ -2890,7 +2890,7 @@
     my %hidden_index = (tp => 'tps');
     $hidden_index{$_} = 'fns' foreach qw(fn un typefn typefun max spec
                                         op typeop method typemethod);
-    $hidden_index{$_} = 'fns' foreach qw(vr var typevr typevar opt cv
+    $hidden_index{$_} = 'vrs' foreach qw(vr var typevr typevar opt cv
                                         ivar typeivar);
 
-- 
Alexandre Duret-Lutz



reply via email to

[Prev in Thread] Current Thread [Next in Thread]