073263
To: vim_dev@googlegroups.com
073263
Subject: Patch 7.4.553
073263
Fcc: outbox
073263
From: Bram Moolenaar <Bram@moolenaar.net>
073263
Mime-Version: 1.0
073263
Content-Type: text/plain; charset=UTF-8
073263
Content-Transfer-Encoding: 8bit
073263
------------
073263
073263
Patch 7.4.553
073263
Problem:    Various small issues.
073263
Solution:   Fix those issues.
073263
Files:	    src/ex_cmds.h, src/gui.h, src/message.c, src/testdir/test39.in,
073263
	    src/proto/eval.pro, src/proto/misc1.pro, src/proto/ops.pro,
073263
	    src/proto/screen.pro, src/proto/window.pro. src/os_unix.c,
073263
	    src/Make_vms.mms, src/proto/os_vms.pro, src/INSTALL
073263
073263
073263
*** ../vim-7.4.552/src/ex_cmds.h	2014-12-08 04:16:26.257702950 +0100
073263
--- src/ex_cmds.h	2014-12-17 12:41:18.536370067 +0100
073263
***************
073263
*** 63,69 ****
073263
  #define ADDR_WINDOWS		1
073263
  #define ADDR_ARGUMENTS		2
073263
  #define ADDR_LOADED_BUFFERS	3
073263
! #define ADDR_BUFFERS	4
073263
  #define ADDR_TABS		5
073263
  
073263
  #ifndef DO_DECLARE_EXCMD
073263
--- 63,69 ----
073263
  #define ADDR_WINDOWS		1
073263
  #define ADDR_ARGUMENTS		2
073263
  #define ADDR_LOADED_BUFFERS	3
073263
! #define ADDR_BUFFERS		4
073263
  #define ADDR_TABS		5
073263
  
073263
  #ifndef DO_DECLARE_EXCMD
073263
*** ../vim-7.4.552/src/gui.h	2013-06-17 22:22:49.000000000 +0200
073263
--- src/gui.h	2014-11-20 22:14:04.635717128 +0100
073263
***************
073263
*** 41,47 ****
073263
  # include <Events.h>
073263
  # include <Menus.h>
073263
  # if !(defined (TARGET_API_MAC_CARBON) && (TARGET_API_MAC_CARBON))
073263
! #   include <Windows.h>
073263
  # endif
073263
  # include <Controls.h>
073263
  /*# include <TextEdit.h>*/
073263
--- 41,47 ----
073263
  # include <Events.h>
073263
  # include <Menus.h>
073263
  # if !(defined (TARGET_API_MAC_CARBON) && (TARGET_API_MAC_CARBON))
073263
! #  include <Windows.h>
073263
  # endif
073263
  # include <Controls.h>
073263
  /*# include <TextEdit.h>*/
073263
*** ../vim-7.4.552/src/message.c	2014-02-23 22:52:33.368764715 +0100
073263
--- src/message.c	2014-10-31 13:43:15.075230535 +0100
073263
***************
073263
*** 4030,4040 ****
073263
   * pointer for resulting string argument if "str_m" is zero (as per ISO C99).
073263
   *
073263
   * The return value is the number of characters which would be generated
073263
!  * for the given input, excluding the trailing null. If this value
073263
   * is greater or equal to "str_m", not all characters from the result
073263
   * have been stored in str, output bytes beyond the ("str_m"-1) -th character
073263
   * are discarded. If "str_m" is greater than zero it is guaranteed
073263
!  * the resulting string will be null-terminated.
073263
   */
073263
  
073263
  /*
073263
--- 4030,4040 ----
073263
   * pointer for resulting string argument if "str_m" is zero (as per ISO C99).
073263
   *
073263
   * The return value is the number of characters which would be generated
073263
!  * for the given input, excluding the trailing NUL. If this value
073263
   * is greater or equal to "str_m", not all characters from the result
073263
   * have been stored in str, output bytes beyond the ("str_m"-1) -th character
073263
   * are discarded. If "str_m" is greater than zero it is guaranteed
073263
!  * the resulting string will be NUL-terminated.
073263
   */
073263
  
073263
  /*
073263
*** ../vim-7.4.552/src/testdir/test39.in	2014-08-16 18:13:00.082044726 +0200
073263
--- src/testdir/test39.in	2014-08-16 18:22:56.418023098 +0200
073263
***************
073263
*** 85,90 ****
073263
--- 85,94 ----
073263
  cccc
073263
  dddd
073263
  
073263
+ yaaa
073263
+ ¿¿¿
073263
+ bbb
073263
+ 
073263
  A23
073263
  4567
073263
  
073263
*** ../vim-7.4.552/src/proto/eval.pro	2014-05-07 17:31:32.473182497 +0200
073263
--- src/proto/eval.pro	2014-11-12 15:34:08.671587958 +0100
073263
***************
073263
*** 59,66 ****
073263
  int list_append_dict __ARGS((list_T *list, dict_T *dict));
073263
  int list_append_string __ARGS((list_T *l, char_u *str, int len));
073263
  int list_insert_tv __ARGS((list_T *l, typval_T *tv, listitem_T *item));
073263
- void vimlist_remove __ARGS((list_T *l, listitem_T *item, listitem_T *item2));
073263
  void list_insert __ARGS((list_T *l, listitem_T *ni, listitem_T *item));
073263
  int garbage_collect __ARGS((void));
073263
  void set_ref_in_ht __ARGS((hashtab_T *ht, int copyID));
073263
  void set_ref_in_list __ARGS((list_T *l, int copyID));
073263
--- 59,66 ----
073263
  int list_append_dict __ARGS((list_T *list, dict_T *dict));
073263
  int list_append_string __ARGS((list_T *l, char_u *str, int len));
073263
  int list_insert_tv __ARGS((list_T *l, typval_T *tv, listitem_T *item));
073263
  void list_insert __ARGS((list_T *l, listitem_T *ni, listitem_T *item));
073263
+ void vimlist_remove __ARGS((list_T *l, listitem_T *item, listitem_T *item2));
073263
  int garbage_collect __ARGS((void));
073263
  void set_ref_in_ht __ARGS((hashtab_T *ht, int copyID));
073263
  void set_ref_in_list __ARGS((list_T *l, int copyID));
073263
*** ../vim-7.4.552/src/proto/misc1.pro	2014-06-25 14:39:35.110348584 +0200
073263
--- src/proto/misc1.pro	2014-11-12 15:34:16.043501712 +0100
073263
***************
073263
*** 5,11 ****
073263
  int get_indent_str __ARGS((char_u *ptr, int ts, int list));
073263
  int set_indent __ARGS((int size, int flags));
073263
  int get_number_indent __ARGS((linenr_T lnum));
073263
! int get_breakindent_win __ARGS((win_T *wp, char_u *ptr));
073263
  int open_line __ARGS((int dir, int flags, int second_line_indent));
073263
  int get_leader_len __ARGS((char_u *line, char_u **flags, int backward, int include_space));
073263
  int get_last_leader_offset __ARGS((char_u *line, char_u **flags));
073263
--- 5,11 ----
073263
  int get_indent_str __ARGS((char_u *ptr, int ts, int list));
073263
  int set_indent __ARGS((int size, int flags));
073263
  int get_number_indent __ARGS((linenr_T lnum));
073263
! int get_breakindent_win __ARGS((win_T *wp, char_u *line));
073263
  int open_line __ARGS((int dir, int flags, int second_line_indent));
073263
  int get_leader_len __ARGS((char_u *line, char_u **flags, int backward, int include_space));
073263
  int get_last_leader_offset __ARGS((char_u *line, char_u **flags));
073263
*** ../vim-7.4.552/src/proto/ops.pro	2014-04-29 12:15:22.860032651 +0200
073263
--- src/proto/ops.pro	2014-11-12 15:34:17.567483882 +0100
073263
***************
073263
*** 55,62 ****
073263
  char_u get_reg_type __ARGS((int regname, long *reglen));
073263
  char_u *get_reg_contents __ARGS((int regname, int flags));
073263
  void write_reg_contents __ARGS((int name, char_u *str, int maxlen, int must_append));
073263
- void write_reg_contents_ex __ARGS((int name, char_u *str, int maxlen, int must_append, int yank_type, long block_len));
073263
  void write_reg_contents_lst __ARGS((int name, char_u **strings, int maxlen, int must_append, int yank_type, long block_len));
073263
  void clear_oparg __ARGS((oparg_T *oap));
073263
  void cursor_pos_info __ARGS((void));
073263
  /* vim: set ft=c : */
073263
--- 55,62 ----
073263
  char_u get_reg_type __ARGS((int regname, long *reglen));
073263
  char_u *get_reg_contents __ARGS((int regname, int flags));
073263
  void write_reg_contents __ARGS((int name, char_u *str, int maxlen, int must_append));
073263
  void write_reg_contents_lst __ARGS((int name, char_u **strings, int maxlen, int must_append, int yank_type, long block_len));
073263
+ void write_reg_contents_ex __ARGS((int name, char_u *str, int maxlen, int must_append, int yank_type, long block_len));
073263
  void clear_oparg __ARGS((oparg_T *oap));
073263
  void cursor_pos_info __ARGS((void));
073263
  /* vim: set ft=c : */
073263
*** ../vim-7.4.552/src/proto/screen.pro	2013-08-10 13:37:25.000000000 +0200
073263
--- src/proto/screen.pro	2014-11-12 15:34:19.455461795 +0100
073263
***************
073263
*** 26,32 ****
073263
  void screen_putchar __ARGS((int c, int row, int col, int attr));
073263
  void screen_getbytes __ARGS((int row, int col, char_u *bytes, int *attrp));
073263
  void screen_puts __ARGS((char_u *text, int row, int col, int attr));
073263
! void screen_puts_len __ARGS((char_u *text, int len, int row, int col, int attr));
073263
  void screen_stop_highlight __ARGS((void));
073263
  void reset_cterm_colors __ARGS((void));
073263
  void screen_draw_rectangle __ARGS((int row, int col, int height, int width, int invert));
073263
--- 26,32 ----
073263
  void screen_putchar __ARGS((int c, int row, int col, int attr));
073263
  void screen_getbytes __ARGS((int row, int col, char_u *bytes, int *attrp));
073263
  void screen_puts __ARGS((char_u *text, int row, int col, int attr));
073263
! void screen_puts_len __ARGS((char_u *text, int textlen, int row, int col, int attr));
073263
  void screen_stop_highlight __ARGS((void));
073263
  void reset_cterm_colors __ARGS((void));
073263
  void screen_draw_rectangle __ARGS((int row, int col, int height, int width, int invert));
073263
*** ../vim-7.4.552/src/os_unix.c	2014-11-19 18:48:41.515814987 +0100
073263
--- src/os_unix.c	2014-11-23 13:47:50.484703720 +0100
073263
***************
073263
*** 1609,1615 ****
073263
  /*
073263
   * If the X11 connection was lost try to restore it.
073263
   * Helps when the X11 server was stopped and restarted while Vim was inactive
073263
!  * (e.g. though tmux).
073263
   */
073263
      static void
073263
  may_restore_clipboard()
073263
--- 1609,1615 ----
073263
  /*
073263
   * If the X11 connection was lost try to restore it.
073263
   * Helps when the X11 server was stopped and restarted while Vim was inactive
073263
!  * (e.g. through tmux).
073263
   */
073263
      static void
073263
  may_restore_clipboard()
073263
*** ../vim-7.4.552/src/Make_vms.mms	2014-03-12 16:51:35.048792541 +0100
073263
--- src/Make_vms.mms	2014-08-10 16:27:11.040711199 +0200
073263
***************
073263
*** 2,8 ****
073263
  # Makefile for Vim on OpenVMS
073263
  #
073263
  # Maintainer:   Zoltan Arpadffy <arpadffy@polarhome.com>
073263
! # Last change:  2014 Feb 24
073263
  #
073263
  # This has script been tested on VMS 6.2 to 8.2 on DEC Alpha, VAX and IA64
073263
  # with MMS and MMK
073263
--- 2,8 ----
073263
  # Makefile for Vim on OpenVMS
073263
  #
073263
  # Maintainer:   Zoltan Arpadffy <arpadffy@polarhome.com>
073263
! # Last change:  2014 Aug 10
073263
  #
073263
  # This has script been tested on VMS 6.2 to 8.2 on DEC Alpha, VAX and IA64
073263
  # with MMS and MMK
073263
***************
073263
*** 309,315 ****
073263
  ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) \
073263
  	   $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(SNIFF_LIB) $(RUBY_LIB)
073263
  
073263
! SRC =	blowfish.c buffer.c charset.c diff.c digraph.c edit.c eval.c ex_cmds.c ex_cmds2.c \
073263
  	ex_docmd.c ex_eval.c ex_getln.c if_xcmdsrv.c fileio.c fold.c getchar.c \
073263
  	hardcopy.c hashtab.c main.c mark.c menu.c mbyte.c memfile.c memline.c message.c misc1.c \
073263
  	misc2.c move.c normal.c ops.c option.c popupmnu.c quickfix.c regexp.c search.c sha256.c\
073263
--- 309,315 ----
073263
  ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) \
073263
  	   $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(SNIFF_LIB) $(RUBY_LIB)
073263
  
073263
! SRC =	blowfish.c buffer.c charset.c crypt.c, crypt_zip.c diff.c digraph.c edit.c eval.c ex_cmds.c ex_cmds2.c \
073263
  	ex_docmd.c ex_eval.c ex_getln.c if_xcmdsrv.c fileio.c fold.c getchar.c \
073263
  	hardcopy.c hashtab.c main.c mark.c menu.c mbyte.c memfile.c memline.c message.c misc1.c \
073263
  	misc2.c move.c normal.c ops.c option.c popupmnu.c quickfix.c regexp.c search.c sha256.c\
073263
***************
073263
*** 318,324 ****
073263
  	$(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) $(SNIFF_SRC) \
073263
  	$(RUBY_SRC) $(HANGULIN_SRC) $(MZSCH_SRC)
073263
  
073263
! OBJ =	blowfish.obj buffer.obj charset.obj diff.obj digraph.obj edit.obj eval.obj \
073263
  	ex_cmds.obj ex_cmds2.obj ex_docmd.obj ex_eval.obj ex_getln.obj \
073263
  	if_xcmdsrv.obj fileio.obj fold.obj getchar.obj hardcopy.obj hashtab.obj main.obj mark.obj \
073263
  	menu.obj memfile.obj memline.obj message.obj misc1.obj misc2.obj \
073263
--- 318,324 ----
073263
  	$(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) $(SNIFF_SRC) \
073263
  	$(RUBY_SRC) $(HANGULIN_SRC) $(MZSCH_SRC)
073263
  
073263
! OBJ =	blowfish.obj buffer.obj charset.obj crypt.obj, crypt_zip.obj diff.obj digraph.obj edit.obj eval.obj \
073263
  	ex_cmds.obj ex_cmds2.obj ex_docmd.obj ex_eval.obj ex_getln.obj \
073263
  	if_xcmdsrv.obj fileio.obj fold.obj getchar.obj hardcopy.obj hashtab.obj main.obj mark.obj \
073263
  	menu.obj memfile.obj memline.obj message.obj misc1.obj misc2.obj \
073263
*** ../vim-7.4.552/src/proto/os_vms.pro	2014-03-12 16:51:35.060792541 +0100
073263
--- src/proto/os_vms.pro	2014-11-12 15:34:29.219347574 +0100
073263
***************
073263
*** 5,15 ****
073263
  char_u *mch_getenv __ARGS((char_u *lognam));
073263
  int mch_setenv __ARGS((char *var, char *value, int x));
073263
  int vms_sys __ARGS((char *cmd, char *out, char *inp));
073263
  int vms_sys_status __ARGS((int status));
073263
  int vms_read __ARGS((char *inbuf, size_t nbytes));
073263
- char *vms_tolower __ARGS((char *name));
073263
  int mch_expand_wildcards __ARGS((int num_pat, char_u **pat, int *num_file, char_u ***file, int flags));
073263
  int mch_expandpath __ARGS((garray_T *gap, char_u *path, int flags));
073263
  void *vms_fixfilename __ARGS((void *instring));
073263
  void vms_remove_version __ARGS((void *fname));
073263
  /* vim: set ft=c : */
073263
--- 5,16 ----
073263
  char_u *mch_getenv __ARGS((char_u *lognam));
073263
  int mch_setenv __ARGS((char *var, char *value, int x));
073263
  int vms_sys __ARGS((char *cmd, char *out, char *inp));
073263
+ char *vms_tolower __ARGS((char *name));
073263
  int vms_sys_status __ARGS((int status));
073263
  int vms_read __ARGS((char *inbuf, size_t nbytes));
073263
  int mch_expand_wildcards __ARGS((int num_pat, char_u **pat, int *num_file, char_u ***file, int flags));
073263
  int mch_expandpath __ARGS((garray_T *gap, char_u *path, int flags));
073263
  void *vms_fixfilename __ARGS((void *instring));
073263
  void vms_remove_version __ARGS((void *fname));
073263
+ int RealWaitForChar __ARGS((int fd, long msec, int *check_for_gpm));
073263
  /* vim: set ft=c : */
073263
*** ../vim-7.4.552/src/INSTALL	2011-05-19 12:36:17.000000000 +0200
073263
--- src/INSTALL	2014-07-06 14:30:41.411368351 +0200
073263
***************
073263
*** 316,322 ****
073263
  the `configure' script.  `configure' automatically checks for the
073263
  source code in the directory that `configure' is in and in `..'.
073263
  
073263
!    If you have to use a `make' that does not supports the `VPATH'
073263
  variable, you have to compile the package for one architecture at a time
073263
  in the source code directory.  After you have installed the package for
073263
  one architecture, use `make distclean' before reconfiguring for another
073263
--- 316,322 ----
073263
  the `configure' script.  `configure' automatically checks for the
073263
  source code in the directory that `configure' is in and in `..'.
073263
  
073263
!    If you have to use a `make' that does not support the `VPATH'
073263
  variable, you have to compile the package for one architecture at a time
073263
  in the source code directory.  After you have installed the package for
073263
  one architecture, use `make distclean' before reconfiguring for another
073263
*** ../vim-7.4.552/src/version.c	2014-12-14 00:43:50.335749455 +0100
073263
--- src/version.c	2014-12-17 12:39:41.933558755 +0100
073263
***************
073263
*** 743,744 ****
073263
--- 743,746 ----
073263
  {   /* Add new patch number below this line */
073263
+ /**/
073263
+     553,
073263
  /**/
073263
073263
-- 
073263
hundred-and-one symptoms of being an internet addict:
073263
1. You actually wore a blue ribbon to protest the Communications Decency Act.
073263
073263
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
073263
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
073263
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
073263
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///