Fixed typo. tigetstr -> tgetstr.
authorEric S. Raymond <esr@snark.thyrsus.com>
Fri, 12 Mar 1993 20:13:56 +0000 (20:13 +0000)
committerEric S. Raymond <esr@snark.thyrsus.com>
Fri, 12 Mar 1993 20:13:56 +0000 (20:13 +0000)
src/term.c

index b8bf719..c5bc5e2 100644 (file)
@@ -1299,12 +1299,8 @@ term_get_fkeys (address)
    * 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)))