diff options
author | stefanf <stefanf@FreeBSD.org> | 2005-08-08 07:08:35 +0000 |
---|---|---|
committer | stefanf <stefanf@FreeBSD.org> | 2005-08-08 07:08:35 +0000 |
commit | b3a28a5d9481a9bdfdb0e8a86b1384e65da21155 (patch) | |
tree | 8ff6af44ec8434d9817c22a566ba14a874f472e5 /lib/libedit/term.c | |
parent | c72aa990fb62f093944cc3d8590a1dcd8fe7fbc5 (diff) | |
download | FreeBSD-src-b3a28a5d9481a9bdfdb0e8a86b1384e65da21155.zip FreeBSD-src-b3a28a5d9481a9bdfdb0e8a86b1384e65da21155.tar.gz |
Fix a few typos.
Diffstat (limited to 'lib/libedit/term.c')
-rw-r--r-- | lib/libedit/term.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libedit/term.c b/lib/libedit/term.c index b926303..f1b4f8e 100644 --- a/lib/libedit/term.c +++ b/lib/libedit/term.c @@ -932,7 +932,7 @@ term_set(EditLine *el, const char *term) Val(T_co) = tgetnum("co"); Val(T_li) = tgetnum("li"); for (t = tstr; t->name != NULL; t++) { - /* XXX: some systems tgetstr needs non const */ + /* XXX: some systems' tgetstr needs non const */ term_alloc(el, t, tgetstr(strchr(t->name, *t->name), &area)); } @@ -1443,7 +1443,7 @@ term_echotc(EditLine *el, int argc __unused, break; } if (t->name == NULL) { - /* XXX: some systems tgetstr needs non const */ + /* XXX: some systems' tgetstr needs non const */ scap = tgetstr(strchr(*argv, **argv), &area); } if (!scap || scap[0] == '\0') { |