diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/systty.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/systty.h b/src/systty.h index 14848d9257b..22dc37288b3 100644 --- a/src/systty.h +++ b/src/systty.h | |||
| @@ -391,7 +391,11 @@ struct emacs_tty { | |||
| 391 | 391 | ||
| 392 | #ifdef HAVE_TERMIOS | 392 | #ifdef HAVE_TERMIOS |
| 393 | 393 | ||
| 394 | #ifdef TABDLY | ||
| 394 | #define EMACS_TTY_TABS_OK(p) (((p)->main.c_oflag & TABDLY) != TAB3) | 395 | #define EMACS_TTY_TABS_OK(p) (((p)->main.c_oflag & TABDLY) != TAB3) |
| 396 | #else | ||
| 397 | #define EMACS_TTY_TABS_OK(p) 1 | ||
| 398 | #endif | ||
| 395 | 399 | ||
| 396 | #else /* not def HAVE_TERMIOS */ | 400 | #else /* not def HAVE_TERMIOS */ |
| 397 | #ifdef HAVE_TERMIO | 401 | #ifdef HAVE_TERMIO |