Karsten Hopp e9d15a
To: vim_dev@googlegroups.com
Karsten Hopp e9d15a
Subject: Patch 7.3.770
Karsten Hopp e9d15a
Fcc: outbox
Karsten Hopp e9d15a
From: Bram Moolenaar <Bram@moolenaar.net>
Karsten Hopp e9d15a
Mime-Version: 1.0
Karsten Hopp e9d15a
Content-Type: text/plain; charset=UTF-8
Karsten Hopp e9d15a
Content-Transfer-Encoding: 8bit
Karsten Hopp e9d15a
------------
Karsten Hopp e9d15a
Karsten Hopp e9d15a
Patch 7.3.770
Karsten Hopp e9d15a
Problem:    Vim.h indentation is inconsistent.
Karsten Hopp e9d15a
Solution:   Adjust the indentation. (Elias Diem)
Karsten Hopp e9d15a
Files:      src/vim.h
Karsten Hopp e9d15a
Karsten Hopp e9d15a
Karsten Hopp e9d15a
*** ../vim-7.3.769/src/vim.h	2012-08-15 14:04:50.000000000 +0200
Karsten Hopp e9d15a
--- src/vim.h	2013-01-17 17:12:54.000000000 +0100
Karsten Hopp e9d15a
***************
Karsten Hopp e9d15a
*** 104,110 ****
Karsten Hopp e9d15a
  # endif
Karsten Hopp e9d15a
  #endif
Karsten Hopp e9d15a
  #if defined(MACOS_X) || defined(MACOS_CLASSIC)
Karsten Hopp e9d15a
! #  define MACOS
Karsten Hopp e9d15a
  #endif
Karsten Hopp e9d15a
  #if defined(MACOS_X) && defined(MACOS_CLASSIC)
Karsten Hopp e9d15a
      Error: To compile for both MACOS X and Classic use a Classic Carbon
Karsten Hopp e9d15a
--- 104,110 ----
Karsten Hopp e9d15a
  # endif
Karsten Hopp e9d15a
  #endif
Karsten Hopp e9d15a
  #if defined(MACOS_X) || defined(MACOS_CLASSIC)
Karsten Hopp e9d15a
! # define MACOS
Karsten Hopp e9d15a
  #endif
Karsten Hopp e9d15a
  #if defined(MACOS_X) && defined(MACOS_CLASSIC)
Karsten Hopp e9d15a
      Error: To compile for both MACOS X and Classic use a Classic Carbon
Karsten Hopp e9d15a
***************
Karsten Hopp e9d15a
*** 490,496 ****
Karsten Hopp e9d15a
  #  include <string.h>
Karsten Hopp e9d15a
  # endif
Karsten Hopp e9d15a
  # if defined(HAVE_STRINGS_H) && !defined(NO_STRINGS_WITH_STRING_H)
Karsten Hopp e9d15a
! #   include <strings.h>
Karsten Hopp e9d15a
  # endif
Karsten Hopp e9d15a
  # ifdef HAVE_STAT_H
Karsten Hopp e9d15a
  #  include <stat.h>
Karsten Hopp e9d15a
--- 490,496 ----
Karsten Hopp e9d15a
  #  include <string.h>
Karsten Hopp e9d15a
  # endif
Karsten Hopp e9d15a
  # if defined(HAVE_STRINGS_H) && !defined(NO_STRINGS_WITH_STRING_H)
Karsten Hopp e9d15a
! #  include <strings.h>
Karsten Hopp e9d15a
  # endif
Karsten Hopp e9d15a
  # ifdef HAVE_STAT_H
Karsten Hopp e9d15a
  #  include <stat.h>
Karsten Hopp e9d15a
***************
Karsten Hopp e9d15a
*** 515,536 ****
Karsten Hopp e9d15a
  # include <stdarg.h>
Karsten Hopp e9d15a
  #endif
Karsten Hopp e9d15a
  
Karsten Hopp e9d15a
! # if defined(HAVE_SYS_SELECT_H) && \
Karsten Hopp e9d15a
  	(!defined(HAVE_SYS_TIME_H) || defined(SYS_SELECT_WITH_SYS_TIME))
Karsten Hopp e9d15a
! #  include <sys/select.h>
Karsten Hopp e9d15a
! # endif
Karsten Hopp e9d15a
  
Karsten Hopp e9d15a
! # ifndef HAVE_SELECT
Karsten Hopp e9d15a
! #  ifdef HAVE_SYS_POLL_H
Karsten Hopp e9d15a
! #   include <sys/poll.h>
Karsten Hopp e9d15a
  #   define HAVE_POLL
Karsten Hopp e9d15a
- #  else
Karsten Hopp e9d15a
- #   ifdef HAVE_POLL_H
Karsten Hopp e9d15a
- #    include <poll.h>
Karsten Hopp e9d15a
- #    define HAVE_POLL
Karsten Hopp e9d15a
- #   endif
Karsten Hopp e9d15a
  #  endif
Karsten Hopp e9d15a
  # endif
Karsten Hopp e9d15a
  
Karsten Hopp e9d15a
  /* ================ end of the header file puzzle =============== */
Karsten Hopp e9d15a
  
Karsten Hopp e9d15a
--- 515,536 ----
Karsten Hopp e9d15a
  # include <stdarg.h>
Karsten Hopp e9d15a
  #endif
Karsten Hopp e9d15a
  
Karsten Hopp e9d15a
! #if defined(HAVE_SYS_SELECT_H) && \
Karsten Hopp e9d15a
  	(!defined(HAVE_SYS_TIME_H) || defined(SYS_SELECT_WITH_SYS_TIME))
Karsten Hopp e9d15a
! # include <sys/select.h>
Karsten Hopp e9d15a
! #endif
Karsten Hopp e9d15a
  
Karsten Hopp e9d15a
! #ifndef HAVE_SELECT
Karsten Hopp e9d15a
! # ifdef HAVE_SYS_POLL_H
Karsten Hopp e9d15a
! #  include <sys/poll.h>
Karsten Hopp e9d15a
! #  define HAVE_POLL
Karsten Hopp e9d15a
! # else
Karsten Hopp e9d15a
! #  ifdef HAVE_POLL_H
Karsten Hopp e9d15a
! #   include <poll.h>
Karsten Hopp e9d15a
  #   define HAVE_POLL
Karsten Hopp e9d15a
  #  endif
Karsten Hopp e9d15a
  # endif
Karsten Hopp e9d15a
+ #endif
Karsten Hopp e9d15a
  
Karsten Hopp e9d15a
  /* ================ end of the header file puzzle =============== */
Karsten Hopp e9d15a
  
Karsten Hopp e9d15a
***************
Karsten Hopp e9d15a
*** 1877,1884 ****
Karsten Hopp e9d15a
  /* VIM_ATOM_NAME is the older Vim-specific selection type for X11.  Still
Karsten Hopp e9d15a
   * supported for when a mix of Vim versions is used. VIMENC_ATOM_NAME includes
Karsten Hopp e9d15a
   * the encoding to support Vims using different 'encoding' values. */
Karsten Hopp e9d15a
! #define VIM_ATOM_NAME "_VIM_TEXT"
Karsten Hopp e9d15a
! #define VIMENC_ATOM_NAME "_VIMENC_TEXT"
Karsten Hopp e9d15a
  
Karsten Hopp e9d15a
  /* Selection states for modeless selection */
Karsten Hopp e9d15a
  # define SELECT_CLEARED		0
Karsten Hopp e9d15a
--- 1877,1884 ----
Karsten Hopp e9d15a
  /* VIM_ATOM_NAME is the older Vim-specific selection type for X11.  Still
Karsten Hopp e9d15a
   * supported for when a mix of Vim versions is used. VIMENC_ATOM_NAME includes
Karsten Hopp e9d15a
   * the encoding to support Vims using different 'encoding' values. */
Karsten Hopp e9d15a
! # define VIM_ATOM_NAME "_VIM_TEXT"
Karsten Hopp e9d15a
! # define VIMENC_ATOM_NAME "_VIMENC_TEXT"
Karsten Hopp e9d15a
  
Karsten Hopp e9d15a
  /* Selection states for modeless selection */
Karsten Hopp e9d15a
  # define SELECT_CLEARED		0
Karsten Hopp e9d15a
*** ../vim-7.3.769/src/version.c	2013-01-17 17:01:57.000000000 +0100
Karsten Hopp e9d15a
--- src/version.c	2013-01-17 17:16:45.000000000 +0100
Karsten Hopp e9d15a
***************
Karsten Hopp e9d15a
*** 727,728 ****
Karsten Hopp e9d15a
--- 727,730 ----
Karsten Hopp e9d15a
  {   /* Add new patch number below this line */
Karsten Hopp e9d15a
+ /**/
Karsten Hopp e9d15a
+     770,
Karsten Hopp e9d15a
  /**/
Karsten Hopp e9d15a
Karsten Hopp e9d15a
-- 
Karsten Hopp e9d15a
FIRST HEAD: All right! All right! We'll kill him first and then have tea and
Karsten Hopp e9d15a
            biscuits.
Karsten Hopp e9d15a
                 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
Karsten Hopp e9d15a
Karsten Hopp e9d15a
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
Karsten Hopp e9d15a
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
Karsten Hopp e9d15a
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
Karsten Hopp e9d15a
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///