diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | NEWS | 7 | ||||
-rw-r--r-- | TODO | 6 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | po/de.po | 6 | ||||
-rw-r--r-- | po/fr.po | 6 |
7 files changed, 25 insertions, 8 deletions
@@ -12,6 +12,10 @@ (main): Handle 'V' option for extra verbosity. (scan_files): Use MAX (1M, n*lg(n)*64) to estimate initial size of token hash table. + (name_tokens, number_tokens, string_tokens, literal_tokens, + comment_tokens, occurrences, hits_length, tokens_length, output_length): + Change type from size_t to unsigned long. + (report_statistics): Fix printf formats. 1999-03-29 Greg McGary <gkm@gnu.org> @@ -1,5 +1,12 @@ id-utils NEWS - User visible changes. +Version 3.2c - April 3, 1999, by Greg McGary + +* Add verbose traces to file walker: `mkid -V' + +* New heuristic for computing initial size of token table: +MAX (1M, lg(n) * n * 16) + Version 3.2b - March 29, 1999, by Greg McGary * Fixed assorted bugs @@ -1,5 +1,8 @@ id-utils TODO - Future directions +* General + - Add comments to all substantive functions + * Portability - Fix file name handling for non-UNIX file systems (notably DOS, Windoze & OS/2). @@ -17,6 +20,7 @@ id-utils TODO - Future directions - store & retrieve floating point literals - automatically crack (optionally gzipped or compressed) tar files, so you can index and search archived source without having to unpack it. + - reset access times * mkid - (Optinally?) store tokenized contents of comments. @@ -25,10 +29,12 @@ id-utils TODO - Future directions identifiers. Indicate which files have defns vs. uses. This info is needed to support a cscope interface. - Add times(2) results to statistics output. + - Scale statistics base unit (KB, MB, GB) - treat \ specially for TeX files and do likewise with @ for Texinfo. - report dangling symlinks as such, rather than just saying "can't stat" - don't gripe about dangling symlinks if file won't be scanned anyway - Reinstate "-" on command-line, meaning read stdin for newline-separated args. + - detect and avoid cycles in the tree induced by symlinks to /. * gscope - add a cscope work-alike query interface @@ -703,7 +703,7 @@ fi PACKAGE=id-utils -VERSION=3.2b +VERSION=3.2c if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then { echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; } diff --git a/configure.in b/configure.in index 2e15679..47d835e 100644 --- a/configure.in +++ b/configure.in @@ -13,7 +13,7 @@ AC_INIT(src/mkid.c) AM_CONFIG_HEADER(config.h) AC_PREREQ(2.13) -AM_INIT_AUTOMAKE([id-utils], [3.2b]) +AM_INIT_AUTOMAKE([id-utils], [3.2c]) GNU_PACKAGE="GNU $PACKAGE" AC_DEFINE_UNQUOTED(GNU_PACKAGE, "$GNU_PACKAGE", [The concatenation of the strings \`GNU ', and PACKAGE.]) @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU mkid 3.0.8\n" -"POT-Creation-Date: 1999-04-03 17:48-0700\n" +"POT-Creation-Date: 1999-04-03 17:52-0700\n" "PO-Revision-Date: 1996-03-23 22:34 MET\n" "Last-Translator: Karl Eichwalder <ke@ke.Central.DE>\n" "Language-Team: German <de@li.org>\n" @@ -479,7 +479,7 @@ msgstr "Kommentar=%ld\n" #: src/mkid.c:513 #, fuzzy, c-format -msgid "Files=%d, " +msgid "Files=%ld, " msgstr "Dateien=%d, " #: src/mkid.c:514 @@ -494,7 +494,7 @@ msgstr "Bytes=%ld Kb, " #: src/mkid.c:516 #, fuzzy, c-format -msgid "Heap=%ld+%ld Kb, " +msgid "Heap=%d+%d Kb, " msgstr "\"Heap\"=%ld Kb, " #: src/mkid.c:518 @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 1999-04-03 17:48-0700\n" +"POT-Creation-Date: 1999-04-03 17:52-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -487,7 +487,7 @@ msgstr "Commentaire=%ld\n" #: src/mkid.c:513 #, fuzzy, c-format -msgid "Files=%d, " +msgid "Files=%ld, " msgstr "Fichiers=%d, " #: src/mkid.c:514 @@ -502,7 +502,7 @@ msgstr "Octets=%ld Kb, " #: src/mkid.c:516 #, fuzzy, c-format -msgid "Heap=%ld+%ld Kb, " +msgid "Heap=%d+%d Kb, " msgstr "tas=%ld Kb, " #: src/mkid.c:518 |