101 lines
2.9 KiB
Plaintext
101 lines
2.9 KiB
Plaintext
|
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}, /* <20> */
|
|||
|
+ {'c', '|', 162}, /* <20> */
|
|||
|
+ {'$', '$', 163}, /* <20> */
|
|||
|
+ {'o', 'x', 164}, /* <20> - currency symbol in ISO 8859-1 */
|
|||
|
+ {'Y', '-', 165}, /* <20> */
|
|||
|
+ {'|', '|', 166}, /* <20> */
|
|||
|
+ {'c', 'O', 169}, /* <20> */
|
|||
|
+ {'-', ',', 172}, /* <20> */
|
|||
|
+ {'-', '=', 175}, /* <20> */
|
|||
|
+ {'~', 'o', 176}, /* <20> */
|
|||
|
+ {'2', '2', 178}, /* <20> */
|
|||
|
+ {'3', '3', 179}, /* <20> */
|
|||
|
+ {'p', 'p', 182}, /* <20> */
|
|||
|
+ {'~', '.', 183}, /* <20> */
|
|||
|
+ {'1', '1', 185}, /* <20> */
|
|||
|
+ {'~', '?', 191}, /* <20> */
|
|||
|
+ {'A', '`', 192}, /* <20> */
|
|||
|
+ {'A', '^', 194}, /* <20> */
|
|||
|
+ {'A', '~', 195}, /* <20> */
|
|||
|
+ {'A', '"', 196}, /* <20> */
|
|||
|
+ {'A', '@', 197}, /* <20> */
|
|||
|
+ {'E', '`', 200}, /* <20> */
|
|||
|
+ {'E', '^', 202}, /* <20> */
|
|||
|
+ {'E', '"', 203}, /* <20> */
|
|||
|
+ {'I', '`', 204}, /* <20> */
|
|||
|
+ {'I', '^', 206}, /* <20> */
|
|||
|
+ {'I', '"', 207}, /* <20> */
|
|||
|
+ {'N', '~', 209}, /* <20> */
|
|||
|
+ {'O', '`', 210}, /* <20> */
|
|||
|
+ {'O', '^', 212}, /* <20> */
|
|||
|
+ {'O', '~', 213}, /* <20> */
|
|||
|
+ {'/', '\\', 215}, /* <20> - multiplication symbol in ISO 8859-1 */
|
|||
|
+ {'U', '`', 217}, /* <20> */
|
|||
|
+ {'U', '^', 219}, /* <20> */
|
|||
|
+ {'I', 'p', 222}, /* <20> */
|
|||
|
+ {'a', '`', 224}, /* <20> */
|
|||
|
+ {'a', '^', 226}, /* <20> */
|
|||
|
+ {'a', '~', 227}, /* <20> */
|
|||
|
+ {'a', '"', 228}, /* <20> */
|
|||
|
+ {'a', '@', 229}, /* <20> */
|
|||
|
+ {'e', '`', 232}, /* <20> */
|
|||
|
+ {'e', '^', 234}, /* <20> */
|
|||
|
+ {'e', '"', 235}, /* <20> */
|
|||
|
+ {'i', '`', 236}, /* <20> */
|
|||
|
+ {'i', '^', 238}, /* <20> */
|
|||
|
+ {'n', '~', 241}, /* <20> */
|
|||
|
+ {'o', '`', 242}, /* <20> */
|
|||
|
+ {'o', '^', 244}, /* <20> */
|
|||
|
+ {'o', '~', 245}, /* <20> */
|
|||
|
+ {'u', '`', 249}, /* <20> */
|
|||
|
+ {'u', '^', 251}, /* <20> */
|
|||
|
+ {'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 ///
|