aboutsummaryrefslogtreecommitdiffstats
path: root/src/term.c
diff options
context:
space:
mode:
authorKenichi Handa2010-07-26 13:29:08 +0900
committerKenichi Handa2010-07-26 13:29:08 +0900
commit50efd41b43c9b1b540c49c53d4e7824468ec7879 (patch)
tree4a3be8d0322c537816f47a0c6450fc13495edf35 /src/term.c
parentdfe3c90fa5974e200483297e11bb889d0589b8f5 (diff)
parent7d383292d10b876efec43e77fd51c2665e912688 (diff)
downloademacs-50efd41b43c9b1b540c49c53d4e7824468ec7879.tar.gz
emacs-50efd41b43c9b1b540c49c53d4e7824468ec7879.zip
merge trunk
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c
index 3233db84cf7..25501370cdf 100644
--- a/src/term.c
+++ b/src/term.c
@@ -183,7 +183,7 @@ static int no_controlling_tty;
183 183
184static int system_uses_terminfo; 184static int system_uses_terminfo;
185 185
186char *tparam (); 186char *tparam (char *, char *, int, int, ...);
187 187
188extern char *tgetstr (char *, char **); 188extern char *tgetstr (char *, char **);
189 189
@@ -1363,6 +1363,7 @@ static struct fkey_table keys[] =
1363 {"!3", "S-undo"} /*shifted undo key*/ 1363 {"!3", "S-undo"} /*shifted undo key*/
1364 }; 1364 };
1365 1365
1366#ifndef DOS_NT
1366static char **term_get_fkeys_address; 1367static char **term_get_fkeys_address;
1367static KBOARD *term_get_fkeys_kboard; 1368static KBOARD *term_get_fkeys_kboard;
1368static Lisp_Object term_get_fkeys_1 (void); 1369static Lisp_Object term_get_fkeys_1 (void);
@@ -1500,6 +1501,7 @@ term_get_fkeys_1 (void)
1500 1501
1501 return Qnil; 1502 return Qnil;
1502} 1503}
1504#endif /* not DOS_NT */
1503 1505
1504 1506
1505/*********************************************************************** 1507/***********************************************************************