+2010-06-08 Paul Hilfinger <hilfingr@adacore.com>
+
+ * dictionary.h (dict_iter_name_first, dict_iter_name_next): Refer to
+ SYMBOL_SEARCH_NAME, not SYMBOL_BEST_NAME, in comments.
+
2010-06-08 Michael Snyder <msnyder@vmware.com>
* remote.c (remote_close): Set inferior_ptid to null_ptid.
extern struct symbol *dict_iterator_next (struct dict_iterator *iterator);
/* Initialize ITERATOR to point at the first symbol in DICT whose
- SYMBOL_BEST_NAME is NAME (as tested using strcmp_iw), and return
+ SYMBOL_SEARCH_NAME is NAME (as tested using strcmp_iw), and return
that first symbol, or NULL if there are no such symbols. */
extern struct symbol *dict_iter_name_first (const struct dictionary *dict,
struct dict_iterator *iterator);
/* Advance ITERATOR to point at the next symbol in DICT whose
- SYMBOL_BEST_NAME is NAME (as tested using strcmp_iw), or NULL if
+ SYMBOL_SEARCH_NAME is NAME (as tested using strcmp_iw), or NULL if
there are no more such symbols. Don't call this if you've
previously received NULL from dict_iterator_first or
dict_iterator_next on this iteration. And don't call it unless