Mercurial > emacs
changeset 2158:5c9e59f279aa
Fixed typo. tigetstr -> tgetstr.
author | Eric S. Raymond <esr@snark.thyrsus.com> |
---|---|
date | Fri, 12 Mar 1993 20:13:56 +0000 |
parents | 0d77768bf3f2 |
children | 6a082f5ce7e6 |
files | src/term.c |
diffstat | 1 files changed, 1 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/src/term.c Fri Mar 12 19:53:22 1993 +0000 +++ b/src/term.c Fri Mar 12 20:13:56 1993 +0000 @@ -1299,12 +1299,8 @@ * Various mappings to try and get a better fit. */ { -/* ??? I have never heard of tigetstr, and it does not exist. - This at least enables the code below to compile -- rms. */ -#define tigetstr(foo) 0 - #define CONDITIONAL_REASSIGN(cap1, cap2, sym) \ - if (!tigetstr(cap1) && tgetstr(cap2)) \ + if (!tgetstr(cap1) && tgetstr(cap2)) \ Fdefine_key (Vfunction_key_map, \ build_string (cap2), \ Fmake_vector (make_number (1), intern (sym)))