aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-03-11 21:36:22 +0000
committerRichard M. Stallman1993-03-11 21:36:22 +0000
commit323e7e53e35a17765e92443b50b21398062bd05b (patch)
tree128436e311b955ecf04707e9954b3b66b368e0a8 /src
parent3d80ef3f9d123cc04dca6b6aa8f6ae160ebf6d27 (diff)
downloademacs-323e7e53e35a17765e92443b50b21398062bd05b.tar.gz
emacs-323e7e53e35a17765e92443b50b21398062bd05b.zip
(tigetstr): Add dummy definition to make Emacs link again.
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, \