diff options
author | Bram Moolenaar <Bram@vim.org> | 2009-05-13 16:56:33 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2009-05-13 16:56:33 +0000 |
commit | 5fd0ca70d31f835eefb1ee8a06b73763d761a134 (patch) | |
tree | c08cc30b9a1fc6d2f5a0f9434af0de6cc9b1f1ab /src/term.h | |
parent | 0c7ce77a00469e0d8956de3df06b5fde4023ad47 (diff) | |
download | vim-git-5fd0ca70d31f835eefb1ee8a06b73763d761a134.tar.gz |
updated for version 7.2-169v7.2.169
Diffstat (limited to 'src/term.h')
-rw-r--r-- | src/term.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/term.h b/src/term.h index cc9f8ac9f..b1fde0487 100644 --- a/src/term.h +++ b/src/term.h @@ -96,7 +96,11 @@ enum SpecialKey * - there should be code in term.c to obtain the value from the termcap */ +#ifdef S_SPLINT_S /* splint doesn't understand array of pointers */ +extern char_u **term_strings; /* current terminal strings */ +#else extern char_u *(term_strings[]); /* current terminal strings */ +#endif /* * strings used for terminal |