mirror of
https://github.com/zoriya/vim.git
synced 2025-12-20 06:05:18 +00:00
updated for version 7.3.085
Problem: Inconsistency with preproc symbols. void * computation. Solution: Include vimio.h from vim.h. Add type cast.
This commit is contained in:
@@ -10,9 +10,6 @@
|
|||||||
/*
|
/*
|
||||||
* eval.c: Expression evaluation.
|
* eval.c: Expression evaluation.
|
||||||
*/
|
*/
|
||||||
#if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
|
|
||||||
# include "vimio.h" /* for mch_open(), must be before vim.h */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "vim.h"
|
#include "vim.h"
|
||||||
|
|
||||||
|
|||||||
@@ -11,10 +11,6 @@
|
|||||||
* ex_cmds.c: some functions for command line commands
|
* ex_cmds.c: some functions for command line commands
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
|
|
||||||
# include "vimio.h" /* for mch_open(), must be before vim.h */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "vim.h"
|
#include "vim.h"
|
||||||
#include "version.h"
|
#include "version.h"
|
||||||
|
|
||||||
|
|||||||
@@ -11,10 +11,6 @@
|
|||||||
* ex_cmds2.c: some more functions for command line commands
|
* ex_cmds2.c: some more functions for command line commands
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
|
|
||||||
# include "vimio.h" /* for mch_open(), must be before vim.h */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "vim.h"
|
#include "vim.h"
|
||||||
#include "version.h"
|
#include "version.h"
|
||||||
|
|
||||||
|
|||||||
10
src/fileio.c
10
src/fileio.c
@@ -11,14 +11,6 @@
|
|||||||
* fileio.c: read from and write to a file
|
* fileio.c: read from and write to a file
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
|
|
||||||
# include "vimio.h" /* for lseek(), must be before vim.h */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined __EMX__
|
|
||||||
# include "vimio.h" /* for mktemp(), CJW 1997-12-03 */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "vim.h"
|
#include "vim.h"
|
||||||
|
|
||||||
#if defined(__TANDEM) || defined(__MINT__)
|
#if defined(__TANDEM) || defined(__MINT__)
|
||||||
@@ -10336,7 +10328,7 @@ write_eintr(fd, buf, bufsize)
|
|||||||
* by a signal. */
|
* by a signal. */
|
||||||
while (ret < (long)bufsize)
|
while (ret < (long)bufsize)
|
||||||
{
|
{
|
||||||
wlen = vim_write(fd, buf + ret, bufsize - ret);
|
wlen = vim_write(fd, (char *)buf + ret, bufsize - ret);
|
||||||
if (wlen < 0)
|
if (wlen < 0)
|
||||||
{
|
{
|
||||||
if (errno != EINTR)
|
if (errno != EINTR)
|
||||||
|
|||||||
@@ -20,9 +20,6 @@
|
|||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#if defined(UNIX)
|
#if defined(UNIX)
|
||||||
# include <sys/wait.h>
|
# include <sys/wait.h>
|
||||||
#else
|
|
||||||
/* not UNIX, must be WIN32 */
|
|
||||||
# include "vimio.h"
|
|
||||||
#endif
|
#endif
|
||||||
#include "if_cscope.h"
|
#include "if_cscope.h"
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
|
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
# include <stdio.h>
|
# include <stdio.h>
|
||||||
# include "vimio.h"
|
|
||||||
# include <process.h>
|
# include <process.h>
|
||||||
# include <string.h>
|
# include <string.h>
|
||||||
# include <assert.h>
|
# include <assert.h>
|
||||||
|
|||||||
@@ -7,10 +7,6 @@
|
|||||||
* See README.txt for an overview of the Vim source code.
|
* See README.txt for an overview of the Vim source code.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
|
|
||||||
# include "vimio.h" /* for close() and dup() */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define EXTERN
|
#define EXTERN
|
||||||
#include "vim.h"
|
#include "vim.h"
|
||||||
|
|
||||||
|
|||||||
@@ -32,10 +32,6 @@
|
|||||||
* file is opened.
|
* file is opened.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
|
|
||||||
# include "vimio.h" /* for lseek(), must be before vim.h */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "vim.h"
|
#include "vim.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
@@ -42,10 +42,6 @@
|
|||||||
* mf_get().
|
* mf_get().
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
|
|
||||||
# include "vimio.h" /* for mch_open(), must be before vim.h */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "vim.h"
|
#include "vim.h"
|
||||||
|
|
||||||
#ifndef UNIX /* it's in os_unix.h for Unix */
|
#ifndef UNIX /* it's in os_unix.h for Unix */
|
||||||
|
|||||||
@@ -16,10 +16,6 @@
|
|||||||
* See ":help netbeans-protocol" for explanation.
|
* See ":help netbeans-protocol" for explanation.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
|
|
||||||
# include "vimio.h" /* for mch_open(), must be before vim.h */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "vim.h"
|
#include "vim.h"
|
||||||
|
|
||||||
#if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
|
#if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
|
||||||
|
|||||||
@@ -21,7 +21,6 @@
|
|||||||
* Some functions are also used for Win16 (MS-Windows 3.1).
|
* Some functions are also used for Win16 (MS-Windows 3.1).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "vimio.h"
|
|
||||||
#include "vim.h"
|
#include "vim.h"
|
||||||
|
|
||||||
#include <conio.h>
|
#include <conio.h>
|
||||||
|
|||||||
@@ -22,7 +22,6 @@
|
|||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "vimio.h"
|
|
||||||
#include "vim.h"
|
#include "vim.h"
|
||||||
|
|
||||||
#ifdef WIN16
|
#ifdef WIN16
|
||||||
|
|||||||
@@ -20,7 +20,6 @@
|
|||||||
# pragma warn -obs
|
# pragma warn -obs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "vimio.h"
|
|
||||||
#include "vim.h"
|
#include "vim.h"
|
||||||
|
|
||||||
#include <dos.h>
|
#include <dos.h>
|
||||||
|
|||||||
@@ -20,7 +20,6 @@
|
|||||||
* Roger Knobbe <rogerk@wonderware.com> did the initial port of Vim 3.0.
|
* Roger Knobbe <rogerk@wonderware.com> did the initial port of Vim 3.0.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "vimio.h"
|
|
||||||
#include "vim.h"
|
#include "vim.h"
|
||||||
|
|
||||||
#ifdef FEAT_MZSCHEME
|
#ifdef FEAT_MZSCHEME
|
||||||
|
|||||||
@@ -303,10 +303,6 @@
|
|||||||
* few bytes as possible, see offset2bytes())
|
* few bytes as possible, see offset2bytes())
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
|
|
||||||
# include "vimio.h" /* for lseek(), must be before vim.h */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "vim.h"
|
#include "vim.h"
|
||||||
|
|
||||||
#if defined(FEAT_SPELL) || defined(PROTO)
|
#if defined(FEAT_SPELL) || defined(PROTO)
|
||||||
|
|||||||
@@ -11,10 +11,6 @@
|
|||||||
* Code to handle tags and the tag stack
|
* Code to handle tags and the tag stack
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
|
|
||||||
# include "vimio.h" /* for lseek(), must be before vim.h */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "vim.h"
|
#include "vim.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
@@ -81,10 +81,6 @@
|
|||||||
#define UH_MAGIC 0x18dade /* value for uh_magic when in use */
|
#define UH_MAGIC 0x18dade /* value for uh_magic when in use */
|
||||||
#define UE_MAGIC 0xabc123 /* value for ue_magic when in use */
|
#define UE_MAGIC 0xabc123 /* value for ue_magic when in use */
|
||||||
|
|
||||||
#if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
|
|
||||||
# include "vimio.h" /* for vim_read(), must be before vim.h */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "vim.h"
|
#include "vim.h"
|
||||||
|
|
||||||
static void u_unch_branch __ARGS((u_header_T *uhp));
|
static void u_unch_branch __ARGS((u_header_T *uhp));
|
||||||
|
|||||||
@@ -714,6 +714,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
85,
|
||||||
/**/
|
/**/
|
||||||
84,
|
84,
|
||||||
/**/
|
/**/
|
||||||
|
|||||||
@@ -27,6 +27,11 @@
|
|||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64) \
|
||||||
|
|| defined(__EMX__)
|
||||||
|
# include "vimio.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
/* ============ the header file puzzle (ca. 50-100 pieces) ========= */
|
/* ============ the header file puzzle (ca. 50-100 pieces) ========= */
|
||||||
|
|
||||||
#ifdef HAVE_CONFIG_H /* GNU autoconf (or something else) was here */
|
#ifdef HAVE_CONFIG_H /* GNU autoconf (or something else) was here */
|
||||||
|
|||||||
Reference in New Issue
Block a user