diff options
| author | Kenichi Handa | 2010-07-26 13:29:08 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2010-07-26 13:29:08 +0900 |
| commit | 50efd41b43c9b1b540c49c53d4e7824468ec7879 (patch) | |
| tree | 4a3be8d0322c537816f47a0c6450fc13495edf35 /src/term.c | |
| parent | dfe3c90fa5974e200483297e11bb889d0589b8f5 (diff) | |
| parent | 7d383292d10b876efec43e77fd51c2665e912688 (diff) | |
| download | emacs-50efd41b43c9b1b540c49c53d4e7824468ec7879.tar.gz emacs-50efd41b43c9b1b540c49c53d4e7824468ec7879.zip | |
merge trunk
Diffstat (limited to 'src/term.c')
| -rw-r--r-- | src/term.c | 4 |
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 | ||
| 184 | static int system_uses_terminfo; | 184 | static int system_uses_terminfo; |
| 185 | 185 | ||
| 186 | char *tparam (); | 186 | char *tparam (char *, char *, int, int, ...); |
| 187 | 187 | ||
| 188 | extern char *tgetstr (char *, char **); | 188 | extern 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 | ||
| 1366 | static char **term_get_fkeys_address; | 1367 | static char **term_get_fkeys_address; |
| 1367 | static KBOARD *term_get_fkeys_kboard; | 1368 | static KBOARD *term_get_fkeys_kboard; |
| 1368 | static Lisp_Object term_get_fkeys_1 (void); | 1369 | static 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 | /*********************************************************************** |