aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1996-01-09 23:44:41 +0000
committerKarl Heuer <[email protected]>1996-01-09 23:44:41 +0000
commitf21b7e242cfe7f4fa0aceb031da1c6bebf427abf (patch)
tree4a08dd14ecf9a1853dd0318b494360060b4ddecd
parent4a127b3b175c83d38b7cdb713e144965d75c091f (diff)
(tgetent): Find all the tc caps that there are.
-rw-r--r--src/termcap.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/termcap.c b/src/termcap.c
index 26a1229077..2b0277874b 100644
--- a/src/termcap.c
+++ b/src/termcap.c
@@ -423,7 +423,7 @@ tgetent (bp, name)
register int fd;
struct buffer buf;
register char *bp1;
- char *bp2;
+ char *tc_search_point;
char *term;
int malloc_size = 0;
register int c;
@@ -511,7 +511,7 @@ tgetent (bp, name)
malloc_size = indirect ? strlen (tcenv) + 1 : buf.size;
bp = (char *) xmalloc (malloc_size);
}
- bp1 = bp;
+ tc_search_point = bp1 = bp;
if (indirect)
/* Copy the data from the environment variable. */
@@ -542,11 +542,10 @@ tgetent (bp, name)
malloc_size = bp1 - bp + buf.size;
termcap_name = (char *) xrealloc (bp, malloc_size);
bp1 += termcap_name - bp;
+ tc_search_point += termcap_name - bp;
bp = termcap_name;
}
- bp2 = bp1;
-
/* Copy the line of the entry from buf into bp. */
termcap_name = buf.ptr;
while ((*bp1++ = c = *termcap_name++) && c != '\n')
@@ -560,7 +559,8 @@ tgetent (bp, name)
/* Does this entry refer to another terminal type's entry?
If something is found, copy it into heap and null-terminate it. */
- term = tgetst1 (find_capability (bp2, "tc"), (char **) 0);
+ tc_search_point = find_capability (tc_search_point, "tc");
+ term = tgetst1 (tc_search_point, (char **) 0);
}
close (fd);