home *** CD-ROM | disk | FTP | other *** search
- To: vim-dev@vim.org
- Subject: Patch 7.1.193
- Fcc: outbox
- From: Bram Moolenaar <Bram@moolenaar.net>
- Mime-Version: 1.0
- Content-Type: text/plain; charset=ISO-8859-1
- Content-Transfer-Encoding: 8bit
- ------------
-
- Patch 7.1.193
- Problem: Some Vim 5.x digraphs are missing in Vim 7, even though the
- character pairs are not used. (Philippe de Muyter)
- Solution: Add those Vim 5.x digraphs that don't conflict with others.
- Files: src/digraph.c
-
-
- *** ../vim-7.1.192/src/digraph.c Thu Sep 13 18:25:08 2007
- --- src/digraph.c Thu Jan 3 17:48:47 2008
- ***************
- *** 1978,1983 ****
- --- 1978,2038 ----
- {'f', 't', 0xfb05},
- {'s', 't', 0xfb06},
- # endif /* FEAT_MBYTE */
- +
- + /* Vim 5.x compatible digraphs that don't conflict with the above */
- + {'~', '!', 161}, /* í */
- + {'c', '|', 162}, /* ó */
- + {'$', '$', 163}, /* ú */
- + {'o', 'x', 164}, /* ñ - currency symbol in ISO 8859-1 */
- + {'Y', '-', 165}, /* Ñ */
- + {'|', '|', 166}, /* ª */
- + {'c', 'O', 169}, /* ⌐ */
- + {'-', ',', 172}, /* ¼ */
- + {'-', '=', 175}, /* » */
- + {'~', 'o', 176}, /* ░ */
- + {'2', '2', 178}, /* ▓ */
- + {'3', '3', 179}, /* │ */
- + {'p', 'p', 182}, /* ╢ */
- + {'~', '.', 183}, /* ╖ */
- + {'1', '1', 185}, /* ╣ */
- + {'~', '?', 191}, /* ┐ */
- + {'A', '`', 192}, /* └ */
- + {'A', '^', 194}, /* ┬ */
- + {'A', '~', 195}, /* ├ */
- + {'A', '"', 196}, /* ─ */
- + {'A', '@', 197}, /* ┼ */
- + {'E', '`', 200}, /* ╚ */
- + {'E', '^', 202}, /* ╩ */
- + {'E', '"', 203}, /* ╦ */
- + {'I', '`', 204}, /* ╠ */
- + {'I', '^', 206}, /* ╬ */
- + {'I', '"', 207}, /* ╧ */
- + {'N', '~', 209}, /* ╤ */
- + {'O', '`', 210}, /* ╥ */
- + {'O', '^', 212}, /* ╘ */
- + {'O', '~', 213}, /* ╒ */
- + {'/', '\\', 215}, /* ╫ - multiplication symbol in ISO 8859-1 */
- + {'U', '`', 217}, /* ┘ */
- + {'U', '^', 219}, /* █ */
- + {'I', 'p', 222}, /* ▐ */
- + {'a', '`', 224}, /* α */
- + {'a', '^', 226}, /* Γ */
- + {'a', '~', 227}, /* π */
- + {'a', '"', 228}, /* Σ */
- + {'a', '@', 229}, /* σ */
- + {'e', '`', 232}, /* Φ */
- + {'e', '^', 234}, /* Ω */
- + {'e', '"', 235}, /* δ */
- + {'i', '`', 236}, /* ∞ */
- + {'i', '^', 238}, /* ε */
- + {'n', '~', 241}, /* ± */
- + {'o', '`', 242}, /* ≥ */
- + {'o', '^', 244}, /* ⌠ */
- + {'o', '~', 245}, /* ⌡ */
- + {'u', '`', 249}, /* ∙ */
- + {'u', '^', 251}, /* √ */
- + {'y', '"', 255}, /* x XX */
- +
- {NUL, NUL, NUL}
- };
-
- *** ../vim-7.1.192/src/version.c Thu Jan 3 16:31:17 2008
- --- src/version.c Thu Jan 3 17:52:51 2008
- ***************
- *** 668,669 ****
- --- 668,671 ----
- { /* Add new patch number below this line */
- + /**/
- + 193,
- /**/
-
- --
- Futility Factor: No experiment is ever a complete failure - it can always
- serve as a negative example.
-
- /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
- /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
- \\\ download, build and distribute -- http://www.A-A-P.org ///
- \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
-