diff options
author | alane <alane@FreeBSD.org> | 2002-09-16 10:28:33 +0000 |
---|---|---|
committer | alane <alane@FreeBSD.org> | 2002-09-16 10:28:33 +0000 |
commit | c988d14e99badda82052a95fd03a86dfd11c5051 (patch) | |
tree | 6a9425fe3b4225e3497fc34069f853070c651bfc /devel/autoconf262/files | |
parent | 3e0b17816ed63dfe353fbbef0d228674ec059e26 (diff) | |
download | FreeBSD-ports-c988d14e99badda82052a95fd03a86dfd11c5051.zip FreeBSD-ports-c988d14e99badda82052a95fd03a86dfd11c5051.tar.gz |
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/autoconf262/files')
-rw-r--r-- | devel/autoconf262/files/patch-bin-autoscan.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/devel/autoconf262/files/patch-bin-autoscan.in b/devel/autoconf262/files/patch-bin-autoscan.in new file mode 100644 index 0000000..68836ff --- /dev/null +++ b/devel/autoconf262/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); + } + |