commit | b3f740695a0199d22cd97aee314f06c7ae32d2ea | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Feb 26 16:16:53 2020 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Feb 26 16:16:53 2020 +0100 |
tree | 8221662bb578d80a7a044f8a20aef09394a5a1a8 | |
parent | d672dde584effd55702ee15efec4cb2a8c77bf85 [diff] [blame] |
patch 8.2.0320: no Haiku support Problem: No Haiku support. Solution: Add support for Haiku. (Emir Sari, closes #5605)
diff --git a/src/term.c b/src/term.c index e9a9004..6afecba 100644 --- a/src/term.c +++ b/src/term.c
@@ -1420,6 +1420,11 @@ # define DEFAULT_TERM (char_u *)"beos-ansi" #endif +#ifdef __HAIKU__ +# undef DEFAULT_TERM +# define DEFAULT_TERM (char_u *)"xterm" +#endif + #ifndef DEFAULT_TERM # define DEFAULT_TERM (char_u *)"dumb" #endif