Patch 8.1.2328
Problem:    A few hangul input pieces remain.
Solution:   Update VMS makefile.
Files:      src/Make_vms.mms


*** ../vim-8.1.2327/src/Make_vms.mms    2019-10-09 22:52:48.992043788 +0200
--- src/Make_vms.mms    2019-11-21 17:33:37.952934936 +0100
***************
*** 2,8 ****
  # Makefile for Vim on OpenVMS
  #
  # Maintainer:   Zoltan Arpadffy <[email protected]>
! # Last change:  2019 Sep 28
  #
  # This has script been tested on VMS 6.2 to 8.2 on DEC Alpha, VAX and IA64
  # with MMS and MMK
--- 2,8 ----
  # Makefile for Vim on OpenVMS
  #
  # Maintainer:   Zoltan Arpadffy <[email protected]>
! # Last change:  2019 Nov 21
  #
  # This has script been tested on VMS 6.2 to 8.2 on DEC Alpha, VAX and IA64
  # with MMS and MMK
***************
*** 70,83 ****
  # VIM_RUBY   = YES
  
  # X Input Method.  For entering special languages like chinese and
! # Japanese. Please define just one: VIM_XIM or VIM_HANGULIN
  # If you don't need it really, leave it behind the comment.
  # VIM_XIM = YES
  
- # Internal Hangul input method. GUI only.
- # If you don't need it really, leave it behind the comment.
- # VIM_HANGULIN = YES
- 
  # Allow any white space to separate the fields in a tags file
  # When not defined, only a TAB is allowed.
  # VIM_TAG_ANYWHITE = YES
--- 70,79 ----
  # VIM_RUBY   = YES
  
  # X Input Method.  For entering special languages like chinese and
! # Japanese.
  # If you don't need it really, leave it behind the comment.
  # VIM_XIM = YES
  
  # Allow any white space to separate the fields in a tags file
  # When not defined, only a TAB is allowed.
  # VIM_TAG_ANYWHITE = YES
***************
*** 247,261 ****
  .ENDIF
  .ENDIF
  
- .IFDEF VIM_HANGULIN
- # HANGULIN related setup.
- .IFDEF GUI
- HANGULIN_DEF = ,"FEAT_HANGULIN"
- HANGULIN_SRC = hangulin.c
- HANGULIN_OBJ = hangulin.obj
- .ENDIF
- .ENDIF
- 
  .IFDEF VIM_MZSCHEME
  # MZSCHEME related setup
  MZSCH_DEF = ,"FEAT_MZSCHEME"
--- 243,248 ----
***************
*** 287,293 ****
  .SUFFIXES : .obj .c
  
  ALL_CFLAGS = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
!  $(TCL_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)$(MZSCH_DEF) -
   $(ICONV_DEF)) -
   $(CFLAGS)$(GUI_FLAG) -
   /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC)$(PERL_INC)$(PYTHON_INC) -
--- 274,280 ----
  .SUFFIXES : .obj .c
  
  ALL_CFLAGS = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
!  $(TCL_DEF)$(RUBY_DEF)$(XIM_DEF)$(TAG_DEF)$(MZSCH_DEF) -
   $(ICONV_DEF)) -
   $(CFLAGS)$(GUI_FLAG) -
   /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC)$(PERL_INC)$(PYTHON_INC) -
***************
*** 298,304 ****
  # as $(GUI_INC) - replaced with $(GUI_INC_VER)
  # Otherwise should not be any other difference.
  ALL_CFLAGS_VER = 
/def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
!  $(TCL_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)$(MZSCH_DEF) - 
   $(ICONV_DEF)) -
   $(CFLAGS)$(GUI_FLAG) -
   /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC_VER)$(PERL_INC)$(PYTHON_INC) -
--- 285,291 ----
  # as $(GUI_INC) - replaced with $(GUI_INC_VER)
  # Otherwise should not be any other difference.
  ALL_CFLAGS_VER = 
/def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
!  $(TCL_DEF)$(RUBY_DEF)$(XIM_DEF)$(TAG_DEF)$(MZSCH_DEF) - 
   $(ICONV_DEF)) -
   $(CFLAGS)$(GUI_FLAG) -
   /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC_VER)$(PERL_INC)$(PYTHON_INC) -
***************
*** 406,412 ****
        $(PYTHON_SRC) \
        $(TCL_SRC) \
        $(RUBY_SRC) \
-       $(HANGULIN_SRC) \
        $(MZSCH_SRC) \
        $(XDIFF_SRC)
  
--- 393,398 ----
***************
*** 510,516 ****
        $(PYTHON_OBJ) \
        $(TCL_OBJ) \
        $(RUBY_OBJ) \
-       $(HANGULIN_OBJ) \
        $(MZSCH_OBJ) \
        $(XDIFF_OBJ)
  
--- 496,501 ----
***************
*** 1070,1079 ****
  pty.obj : pty.c vim.h [.auto]config.h feature.h os_unix.h   \
   ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
   [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
- hangulin.obj : hangulin.c vim.h [.auto]config.h feature.h os_unix.h \
-  ascii.h keymap.h term.h macros.h structs.h regexp.h \
-  gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
-  globals.h
  if_perl.obj : [.auto]if_perl.c vim.h [.auto]config.h feature.h os_unix.h \
   ascii.h keymap.h term.h macros.h structs.h regexp.h \
   gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
--- 1055,1060 ----
*** ../vim-8.1.2327/src/version.c       2019-11-21 17:13:12.632361268 +0100
--- src/version.c       2019-11-21 17:34:24.197430771 +0100
***************
*** 739,740 ****
--- 739,742 ----
  {   /* Add new patch number below this line */
+ /**/
+     2328,
  /**/

-- 
hundred-and-one symptoms of being an internet addict:
100. The most exciting sporting events you noticed during summer 1996
    was Netscape vs. Microsoft.

 /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net   \\\
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

-- 
-- 
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vim_dev/201911211635.xALGZHI0024601%40masaka.moolenaar.net.

Raspunde prin e-mail lui