diff options
| author | Po Lu | 2023-05-01 21:28:40 +0800 |
|---|---|---|
| committer | Po Lu | 2023-05-01 21:28:40 +0800 |
| commit | 8a909927995738cf1103198f8086a42bf28a1d50 (patch) | |
| tree | 07804dabcbf2fc8399940d66b45aa2356e8ed203 /src | |
| parent | b9de6e35b79cbc10909a856df6b1caa770bd4ac4 (diff) | |
| download | emacs-8a909927995738cf1103198f8086a42bf28a1d50.tar.gz emacs-8a909927995738cf1103198f8086a42bf28a1d50.zip | |
; * src/term.c (syms_of_term): Pretend Android uses TERMINFO.
Diffstat (limited to 'src')
| -rw-r--r-- | src/term.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c index 2fa06d71f03..3b5619ff93e 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -4660,7 +4660,7 @@ syms_of_term (void) | |||
| 4660 | DEFVAR_BOOL ("system-uses-terminfo", system_uses_terminfo, | 4660 | DEFVAR_BOOL ("system-uses-terminfo", system_uses_terminfo, |
| 4661 | doc: /* Non-nil means the system uses terminfo rather than termcap. | 4661 | doc: /* Non-nil means the system uses terminfo rather than termcap. |
| 4662 | This variable can be used by terminal emulator packages. */); | 4662 | This variable can be used by terminal emulator packages. */); |
| 4663 | #ifdef TERMINFO | 4663 | #if defined TERMINFO || (defined HAVE_ANDROID && !defined ANDROID_STUBIFY) |
| 4664 | system_uses_terminfo = 1; | 4664 | system_uses_terminfo = 1; |
| 4665 | #else | 4665 | #else |
| 4666 | system_uses_terminfo = 0; | 4666 | system_uses_terminfo = 0; |