summaryrefslogtreecommitdiff
path: root/src/term.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-03-11 21:36:22 +0000
committerRichard M. Stallman <rms@gnu.org>1993-03-11 21:36:22 +0000
commitcb201cc0327b62a05f9e56534a1f7a124648ec59 (patch)
tree0da097c529e40f71855f9a11e9d1fb84ea219d51 /src/term.c
parent290bafccde7d215d9a083ef26f5c4197bf5cd24a (diff)
downloademacs-cb201cc0327b62a05f9e56534a1f7a124648ec59.tar.gz
(tigetstr): Add dummy definition to make Emacs link again.
Diffstat (limited to 'src/term.c')
-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)
* 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)) \
Fdefine_key (Vfunction_key_map, \