improved fix

This commit is contained in:
ceriel 1989-05-30 14:50:16 +00:00
parent e6fb294aac
commit ced856c234
2 changed files with 4 additions and 1 deletions

View file

@ -445,7 +445,9 @@ line_p inpseudo(n)
*/
if (lastline != (line_p) 0 && is_datalabel(lastline)) {
curhol = string;
extern char *lastname;
curhol = lastname;
}
else {
curhol = hol_label();

View file

@ -119,6 +119,7 @@ dblock_p symlookup(name, status)
*/
if (strcmp((*spp)->sy_name, name) == 0) {
/* found */
lastname = (*spp)->sy_name;
return ((*spp)->sy_dblock);
} else {
spp = &(*spp)->sy_next;