|
Karsten Hopp |
81c285 |
To: vim-dev@vim.org
|
|
Karsten Hopp |
81c285 |
Subject: Patch 7.2.218
|
|
Karsten Hopp |
81c285 |
Fcc: outbox
|
|
Karsten Hopp |
81c285 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
81c285 |
Mime-Version: 1.0
|
|
Karsten Hopp |
81c285 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
81c285 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
81c285 |
------------
|
|
Karsten Hopp |
81c285 |
|
|
Karsten Hopp |
81c285 |
Patch 7.2.218
|
|
Karsten Hopp |
81c285 |
Problem: Cannot build GTK with hangul_input feature. (Dominique Pelle)
|
|
Karsten Hopp |
81c285 |
Solution: Adjuste #ifdef. (SungHyun Nam)
|
|
Karsten Hopp |
81c285 |
Files: src/gui.c
|
|
Karsten Hopp |
81c285 |
|
|
Karsten Hopp |
81c285 |
|
|
Karsten Hopp |
81c285 |
*** ../vim-7.2.217/src/gui.c 2009-06-16 16:01:34.000000000 +0200
|
|
Karsten Hopp |
81c285 |
--- src/gui.c 2009-06-24 17:45:01.000000000 +0200
|
|
Karsten Hopp |
81c285 |
***************
|
|
Karsten Hopp |
81c285 |
*** 959,965 ****
|
|
Karsten Hopp |
81c285 |
guicolor_T fg, bg;
|
|
Karsten Hopp |
81c285 |
|
|
Karsten Hopp |
81c285 |
if (
|
|
Karsten Hopp |
81c285 |
! # ifdef HAVE_GTK2
|
|
Karsten Hopp |
81c285 |
preedit_get_status()
|
|
Karsten Hopp |
81c285 |
# else
|
|
Karsten Hopp |
81c285 |
im_get_status()
|
|
Karsten Hopp |
81c285 |
--- 959,965 ----
|
|
Karsten Hopp |
81c285 |
guicolor_T fg, bg;
|
|
Karsten Hopp |
81c285 |
|
|
Karsten Hopp |
81c285 |
if (
|
|
Karsten Hopp |
81c285 |
! # if defined(HAVE_GTK2) && !defined(FEAT_HANGULIN)
|
|
Karsten Hopp |
81c285 |
preedit_get_status()
|
|
Karsten Hopp |
81c285 |
# else
|
|
Karsten Hopp |
81c285 |
im_get_status()
|
|
Karsten Hopp |
81c285 |
*** ../vim-7.2.217/src/version.c 2009-06-24 18:07:55.000000000 +0200
|
|
Karsten Hopp |
81c285 |
--- src/version.c 2009-06-24 18:31:06.000000000 +0200
|
|
Karsten Hopp |
81c285 |
***************
|
|
Karsten Hopp |
81c285 |
*** 678,679 ****
|
|
Karsten Hopp |
81c285 |
--- 678,681 ----
|
|
Karsten Hopp |
81c285 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
81c285 |
+ /**/
|
|
Karsten Hopp |
81c285 |
+ 218,
|
|
Karsten Hopp |
81c285 |
/**/
|
|
Karsten Hopp |
81c285 |
|
|
Karsten Hopp |
81c285 |
--
|
|
Karsten Hopp |
81c285 |
The users that I support would double-click on a landmine to find out
|
|
Karsten Hopp |
81c285 |
what happens. -- A system administrator
|
|
Karsten Hopp |
81c285 |
|
|
Karsten Hopp |
81c285 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
81c285 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
81c285 |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
81c285 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|