summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Berlin <dberlin@dberlin.org>2001-04-01 19:50:50 +0000
committerDaniel Berlin <dberlin@dberlin.org>2001-04-01 19:50:50 +0000
commit83f045db30a6101b4ccf4cfb34f11924b2598557 (patch)
tree4ae645255f84fd0bcb7be2e49f02ef62cdcd1ac4
parente77d4064db59f2752f0e739d31615d9c41ee1d42 (diff)
downloadgdb-83f045db30a6101b4ccf4cfb34f11924b2598557.tar.gz
2001-03-20 Daniel Berlin <dberlin@redhat.com>
* symtab.c (completion_list_add_name): Remove duplicate string checks, readline already does this, and it's much faster at it, too.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/symtab.c24
2 files changed, 5 insertions, 24 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index eef27f309f0..acba6c29e00 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2001-03-20 Daniel Berlin <dberlin@redhat.com>
+
+ * symtab.c (completion_list_add_name): Remove duplicate string checks,
+ readline already does this, and it's much faster at it, too.
+
2001-04-01 Eli Zaretskii <eliz@is.elta.co.il>
* go32-nat.c: Minor tweaks, to pacify the ari script.
diff --git a/gdb/symtab.c b/gdb/symtab.c
index a51126a1d8c..6cb8e963de4 100644
--- a/gdb/symtab.c
+++ b/gdb/symtab.c
@@ -2844,17 +2844,6 @@ completion_list_add_name (char *symname, char *sym_text, int sym_text_len,
return;
}
- /* Clip any symbol names that we've already considered. (This is a
- time optimization) */
-
- for (i = 0; i < return_val_index; ++i)
- {
- if (STREQ (symname, return_val[i]))
- {
- return;
- }
- }
-
/* We have a match for a completion, so add SYMNAME to the current list
of matches. Note that the name is moved to freshly malloc'd space. */
@@ -2880,19 +2869,6 @@ completion_list_add_name (char *symname, char *sym_text, int sym_text_len,
strcat (new, symname);
}
- /* Recheck for duplicates if we intend to add a modified symbol. */
- if (word != sym_text)
- {
- for (i = 0; i < return_val_index; ++i)
- {
- if (STREQ (new, return_val[i]))
- {
- xfree (new);
- return;
- }
- }
- }
-
if (return_val_index + 3 > return_val_size)
{
newsize = (return_val_size *= 2) * sizeof (char *);