aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/term.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/term.c b/src/term.c
index bf3087e0b9f..b8bf719f9b6 100644
--- a/src/term.c
+++ b/src/term.c
@@ -1299,6 +1299,10 @@ term_get_fkeys (address)
1299 * Various mappings to try and get a better fit. 1299 * Various mappings to try and get a better fit.
1300 */ 1300 */
1301 { 1301 {
1302/* ??? I have never heard of tigetstr, and it does not exist.
1303 This at least enables the code below to compile -- rms. */
1304#define tigetstr(foo) 0
1305
1302#define CONDITIONAL_REASSIGN(cap1, cap2, sym) \ 1306#define CONDITIONAL_REASSIGN(cap1, cap2, sym) \
1303 if (!tigetstr(cap1) && tgetstr(cap2)) \ 1307 if (!tigetstr(cap1) && tgetstr(cap2)) \
1304 Fdefine_key (Vfunction_key_map, \ 1308 Fdefine_key (Vfunction_key_map, \