diff options
author | Alan Eldridge <alane@FreeBSD.org> | 2002-09-16 10:28:33 +0000 |
---|---|---|
committer | Alan Eldridge <alane@FreeBSD.org> | 2002-09-16 10:28:33 +0000 |
commit | ab2da640e4dca06f37030f2ff521fdbd101e3f07 (patch) | |
tree | 03fd974def6cb22b93fa7d6b4ea224820e17b3a1 /devel/autoconf257/files | |
parent | Upgrade to 0.9.0. (diff) |
1. Fixed bug in autoscan. Thanks to Joe Marcus Clarke <marcus@marcuscom.com>
who worked with me and beyond to track this down.
2. Support the emacs autoconf/autotest modes now, for both emacs21 and
xemacs21. Other (x)emacsen may work, depends on where they put things.
Diffstat (limited to 'devel/autoconf257/files')
-rw-r--r-- | devel/autoconf257/files/patch-bin-autoscan.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/devel/autoconf257/files/patch-bin-autoscan.in b/devel/autoconf257/files/patch-bin-autoscan.in new file mode 100644 index 000000000000..68836ffb60bc --- /dev/null +++ b/devel/autoconf257/files/patch-bin-autoscan.in @@ -0,0 +1,15 @@ +--- bin/autoscan.in.orig Fri Mar 8 06:52:41 2002 ++++ bin/autoscan.in Mon Sep 16 03:56:50 2002 +@@ -192,7 +192,11 @@ + sub used ($$;$) + { + my ($kind, $word, $where) = @_; +- $where ||= "$File::Find::name:$."; ++ my $lineno = 0; ++ if (defined($.)) { ++ $lineno = $.; ++ } ++ $where ||= "$File::Find::name:$lineno"; + push (@{$used{$kind}{$word}}, $where); + } + |