diff options
| author | Bram Moolenaar <Bram@vim.org> | 2016-02-23 14:53:34 +0100 |
|---|---|---|
| committer | Bram Moolenaar <Bram@vim.org> | 2016-02-23 14:53:34 +0100 |
| commit | 48e330aff911be1c798c88a973af6437a8141fce (patch) | |
| tree | 4945b46753c6220ae5e8cd406d139e5640bd39c4 /src/digraph.c | |
| parent | 4e221c99e85ed40c98892068a01270b9e7492d98 (diff) | |
| download | vim-git-48e330aff911be1c798c88a973af6437a8141fce.tar.gz | |
patch 7.4.1399v7.4.1399
Problem: The MS-DOS code does not build.
Solution: Remove the old MS-DOS code.
Diffstat (limited to 'src/digraph.c')
| -rw-r--r-- | src/digraph.c | 98 |
1 files changed, 15 insertions, 83 deletions
diff --git a/src/digraph.c b/src/digraph.c index 2195d644a..5dab51b20 100644 --- a/src/digraph.c +++ b/src/digraph.c @@ -39,74 +39,7 @@ static garray_T user_digraphs = {0, 0, (int)sizeof(digr_T), 10, NULL}; * compilers cannot handle them (Amiga SAS/C is the most picky one). */ static digr_T digraphdefault[] = -#if defined(MSDOS) - /* - * MSDOS digraphs. - */ - {{'C', ',', 128}, /* ~@ XX */ - {'u', '"', 129}, /* � */ - {'e', '\'', 130}, /* ‚ */ - {'a', '^', 131}, /* ƒ */ - {'a', '"', 132}, /* „ */ - {'a', '`', 133}, /* … */ - {'a', '@', 134}, /* † */ - {'c', ',', 135}, /* ~G XX */ - {'e', '^', 136}, /* ~H XX */ - {'e', '"', 137}, /* ‰ */ - {'e', '`', 138}, /* Š */ - {'i', '"', 139}, /* ‹ */ - {'i', '^', 140}, /* Œ */ - {'i', '`', 141}, /* � */ - {'A', '"', 142}, /* ~N XX */ - {'A', '@', 143}, /* � */ - {'E', '\'', 144}, /* � */ - {'a', 'e', 145}, /* ‘ */ - {'A', 'E', 146}, /* ’ */ - {'o', '^', 147}, /* “ */ - {'o', '"', 148}, /* ” */ - {'o', '`', 149}, /* • */ - {'u', '^', 150}, /* – */ - {'u', '`', 151}, /* — */ - {'y', '"', 152}, /* ˜ */ - {'O', '"', 153}, /* ™ */ - {'U', '"', 154}, /* š */ - {'c', '|', 155}, /* › */ - {'$', '$', 156}, /* œ */ - {'Y', '-', 157}, /* ~] XX */ - {'P', 't', 158}, /* ž */ - {'f', 'f', 159}, /* Ÿ */ - {'a', '\'', 160}, /* */ - {'i', '\'', 161}, /* ¡ */ - {'o', '\'', 162}, /* ¢ */ - {'u', '\'', 163}, /* x XX */ - {'n', '~', 164}, /* ¤ */ - {'N', '~', 165}, /* ¥ */ - {'a', 'a', 166}, /* ¦ */ - {'o', 'o', 167}, /* § */ - {'~', '?', 168}, /* ¨ */ - {'-', 'a', 169}, /* © */ - {'a', '-', 170}, /* ª */ - {'1', '2', 171}, /* « */ - {'1', '4', 172}, /* ¬ */ - {'~', '!', 173}, /* */ - {'<', '<', 174}, /* ® */ - {'>', '>', 175}, /* ¯ */ - - {'s', 's', 225}, /* á */ - {'j', 'u', 230}, /* æ */ - {'o', '/', 237}, /* í */ - {'+', '-', 241}, /* ñ */ - {'>', '=', 242}, /* ò */ - {'<', '=', 243}, /* ó */ - {':', '-', 246}, /* ö */ - {'~', '~', 247}, /* ÷ */ - {'~', 'o', 248}, /* ø */ - {'2', '2', 253}, /* ý */ - {NUL, NUL, NUL} - }; - -#else /* !MSDOS */ -# ifdef __MINT__ +#ifdef __MINT__ /* * ATARI digraphs @@ -171,8 +104,8 @@ static digr_T digraphdefault[] = {NUL, NUL, NUL} }; -# else /* !__MINT__ */ -# ifdef HPUX_DIGRAPHS +#else /* !__MINT__ */ +# ifdef HPUX_DIGRAPHS /* * different HPUX digraphs @@ -275,9 +208,9 @@ static digr_T digraphdefault[] = {NUL, NUL, NUL} }; -# else /* !HPUX_DIGRAPHS */ +# else /* !HPUX_DIGRAPHS */ -# ifdef EBCDIC +# ifdef EBCDIC /* * EBCDIC - ISO digraphs @@ -387,8 +320,8 @@ static digr_T digraphdefault[] = {NUL, NUL, NUL} }; -# else -# if defined(MACOS) && !defined(FEAT_MBYTE) +# else +# if defined(MACOS) && !defined(FEAT_MBYTE) /* * Macintosh digraphs @@ -516,9 +449,9 @@ static digr_T digraphdefault[] = {NUL, NUL, NUL} }; -# else /* !MACOS */ +# else /* !MACOS */ -# ifdef OLD_DIGRAPHS +# ifdef OLD_DIGRAPHS /* * digraphs compatible with Vim 5.x @@ -625,7 +558,7 @@ static digr_T digraphdefault[] = {'y', '"', 255}, /* x XX */ {NUL, NUL, NUL} }; -# else /* OLD_DIGRAPHS */ +# else /* OLD_DIGRAPHS */ /* * digraphs for Unicode from RFC1345 @@ -2001,13 +1934,12 @@ static digr_T digraphdefault[] = {NUL, NUL, NUL} }; -# endif /* OLD_DIGRAPHS */ +# endif /* OLD_DIGRAPHS */ -# endif /* Macintosh */ -# endif /* EBCDIC */ -# endif /* !HPUX_DIGRAPHS */ -# endif /* !__MINT__ */ -#endif /* !MSDOS */ +# endif /* Macintosh */ +# endif /* EBCDIC */ +# endif /* !HPUX_DIGRAPHS */ +#endif /* !__MINT__ */ /* * handle digraphs after typing a character |
