diff options
author | Jim Meyering <meyering@redhat.com> | 2008-05-19 09:13:05 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-05-19 10:45:37 +0200 |
commit | ff2a80bc177f3cd673d3f133f543c011f01748ae (patch) | |
tree | 22750c7c495a98aaf9dd94e081fdcf01db0501c6 | |
parent | 440e6f0cf9c8421ccd4576171d0c8b916cd681f0 (diff) | |
download | idutils-ff2a80bc177f3cd673d3f133f543c011f01748ae.tar.gz idutils-ff2a80bc177f3cd673d3f133f543c011f01748ae.tar.bz2 idutils-ff2a80bc177f3cd673d3f133f543c011f01748ae.zip |
recognize more suffixes: .mk, .ac, .bz2, .lzma.
* libidu/id-lang.map: Add .mk -> make, .ac -> m4.
Handle .bz2 and .lzma, too.
* NEWS: Mention this. Add a few more news items.
-rw-r--r-- | NEWS | 15 | ||||
-rw-r--r-- | libidu/id-lang.map | 6 |
2 files changed, 19 insertions, 2 deletions
@@ -1,6 +1,19 @@ idutils NEWS - User visible changes. -* Noteworthy changes in release 4.3 (????-??-??) [stable] +* Noteworthy changes in release 4.4 (????-??-??) [stable] + +** Bug fixes + +fid: avoid a buffer overrun +handle failed allocation, e.g., by strdup +avoid potential realloc overflow +mkid: avoid an infloop on some .el files + +** Miscellaneous improvements + +revamp code and infrastructure, bringing it closer to coreutils' standards +add automatically-generated man pages +mkid recognize more suffixes: .ac, .mk, .bz2, .lzma. Version 4.2 - August 5, 2006, by Claudio Fontana diff --git a/libidu/id-lang.map b/libidu/id-lang.map index 7edb860..693cf7f 100644 --- a/libidu/id-lang.map +++ b/libidu/id-lang.map @@ -79,6 +79,7 @@ ChangeLog* Cdoc *.scm lisp *.am make +*.mk make Makefile make Makefile.* make @@ -86,9 +87,12 @@ Makefile.* make *.txt text *.m4 m4 +*.ac m4 *.pl perl *.pm perl -*.gz FILTER gzip -d <%s *.Z FILTER gzip -d <%s +*.gz FILTER gzip -d <%s +*.bz2 FILTER bzip2 -d <%s +*.lzma FILTER lzma -d <%s |