diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-09-27 20:59:22 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-09-27 20:59:22 +0000 |
commit | ccaea89d21d782a9797605381def4dd3c86c8062 (patch) | |
tree | c4b9aa1a0320953d79f3ea97dee5f759318153d8 /apps | |
parent | 87c51841f75c7f08567b167774333e6c491bae9c (diff) | |
download | ATCD-ccaea89d21d782a9797605381def4dd3c86c8062.tar.gz |
.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/gperf/ChangeLog | 3 | ||||
-rw-r--r-- | apps/gperf/src/Key_List.cpp | 2 | ||||
-rw-r--r-- | apps/gperf/src/Options.cpp | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/apps/gperf/ChangeLog b/apps/gperf/ChangeLog index 82439f4f4c3..8fb7b7b529c 100644 --- a/apps/gperf/ChangeLog +++ b/apps/gperf/ChangeLog @@ -1,5 +1,8 @@ Sun Sep 27 00:04:18 1998 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu> + * src/Key_List: MAke sure that we don't generate the lookup table + twice if we're forced to change to the switch format. + * src/Key_List: Replaced the use of "int" with "unsigned int" for parameters and hash values. diff --git a/apps/gperf/src/Key_List.cpp b/apps/gperf/src/Key_List.cpp index 7f501abfa7a..97674d1afd4 100644 --- a/apps/gperf/src/Key_List.cpp +++ b/apps/gperf/src/Key_List.cpp @@ -529,7 +529,7 @@ Key_List::output_switch (int use_keyword_table) { if (option[LENTABLE] && option[DUP]) output_keylength_table (); - if (option[POINTER] && option[TYPE]) + if (option[POINTER] && option[TYPE] && use_keyword_table == 0) output_keyword_table (); } diff --git a/apps/gperf/src/Options.cpp b/apps/gperf/src/Options.cpp index c41e943e0d2..b2d679f45ca 100644 --- a/apps/gperf/src/Options.cpp +++ b/apps/gperf/src/Options.cpp @@ -57,7 +57,7 @@ static const char *const DEFAULT_DELIMITERS = ",\n"; int Options::option_word_; int Options::total_switches_; -int Options::total_keysig_size_; +u_int Options::total_keysig_size_; int Options::size_; int Options::key_pos_; int Options::jump_; |