improved fix
This commit is contained in:
parent
e6fb294aac
commit
ced856c234
2 changed files with 4 additions and 1 deletions
|
@ -445,7 +445,9 @@ line_p inpseudo(n)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (lastline != (line_p) 0 && is_datalabel(lastline)) {
|
if (lastline != (line_p) 0 && is_datalabel(lastline)) {
|
||||||
curhol = string;
|
extern char *lastname;
|
||||||
|
|
||||||
|
curhol = lastname;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
curhol = hol_label();
|
curhol = hol_label();
|
||||||
|
|
|
@ -119,6 +119,7 @@ dblock_p symlookup(name, status)
|
||||||
*/
|
*/
|
||||||
if (strcmp((*spp)->sy_name, name) == 0) {
|
if (strcmp((*spp)->sy_name, name) == 0) {
|
||||||
/* found */
|
/* found */
|
||||||
|
lastname = (*spp)->sy_name;
|
||||||
return ((*spp)->sy_dblock);
|
return ((*spp)->sy_dblock);
|
||||||
} else {
|
} else {
|
||||||
spp = &(*spp)->sy_next;
|
spp = &(*spp)->sy_next;
|
||||||
|
|
Loading…
Reference in a new issue