':', too, so that we can limit searches in namespaces
and classes.
+2009-08-24 Keith Seitz <keiths@redhat.com>
+
+ * symtab.c (default_make_symbol_completion_list): Keep
+ ':', too, so that we can limit searches in namespaces
+ and classes.
+
2009-08-24 Tom Tromey <tromey@redhat.com>
* python/python-value.c (valpy_richcompare): Don't return from
which are in symbols. */
while (p > text)
{
- if (isalnum (p[-1]) || p[-1] == '_' || p[-1] == '\0')
+ if (isalnum (p[-1]) || p[-1] == '_' || p[-1] == '\0'
+ || p[-1] == ':')
--p;
else
break;