* linespec.c (symtab_from_filename): Rename variable 's' to
'file_symtab'.
+2003-01-12 David Carlton <carlton@bactrian.org>
+
+ * linespec.c (symtab_from_filename): Rename variable 's' to
+ 'file_symtab'.
+
2003-01-12 Andrew Cagney <ac131313@redhat.com>
* d10v-tdep.c (d10v_init_extra_frame_info): Remove checks for a
{
char *p1;
char *copy;
- struct symtab *s;
+ struct symtab *file_symtab;
p1 = p;
while (p != *argptr && p[-1] == ' ')
copy[p - *argptr] = 0;
/* Find that file's data. */
- s = lookup_symtab (copy);
- if (s == 0)
+ file_symtab = lookup_symtab (copy);
+ if (file_symtab == 0)
{
if (!have_full_symbols () && !have_partial_symbols ())
error ("No symbol table is loaded. Use the \"file\" command.");
p++;
*argptr = p;
- return s;
+ return file_symtab;
}
\f