Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
Vim
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Someone-Else
Vim
Commits
aab21c35
Commit
aab21c35
authored
20 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
updated for version 7.0044
parent
1fad5d49
Loading
Loading
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/Make_mvc.mak
+6
-1
6 additions, 1 deletion
src/Make_mvc.mak
src/message.c
+1
-0
1 addition, 0 deletions
src/message.c
src/proto.h
+2
-2
2 additions, 2 deletions
src/proto.h
src/vim.h
+14
-4
14 additions, 4 deletions
src/vim.h
with
23 additions
and
7 deletions
src/Make_mvc.mak
+
6
−
1
View file @
aab21c35
...
...
@@ -501,9 +501,14 @@ PYTHON_LIB = $(PYTHON)\libs\python$(PYTHON_VER).lib
MZSCHEME_VER
=
205_000
!
endif
CFLAGS
=
$(
CFLAGS
)
-DFEAT_MZSCHEME
-I
$(
MZSCHEME
)
\i
nclude
MZSCHEME_OBJ
=
$(
OUTDIR
)
\i
f_mzsch.obj
!if
"$(DYNAMIC_MZSCHEME)"
==
"yes"
!message
MzScheme
DLLs
will
be
loaded
dynamically
CFLAGS
=
$(
CFLAGS
)
-DDYNAMIC_MZSCHEME
-DDYNAMIC_MZSCH_DLL
=
\"
libmzsch
$(
MZSCHEME_VER
)
.dll
\"
-DDYNAMIC_MZGC_DLL
=
\"
libmzgc
$(
MZSCHEME_VER
)
.dll
\"
!
else
MZSCHEME_LIB
=
$(
MZSCHEME
)
\l
ib
\m
svc
\l
ibmzgc
$(
MZSCHEME_VER
)
.lib
$(
MZSCHEME
)
\l
ib
\m
svc
\l
ibmzsch
$(
MZSCHEME_VER
)
.lib
!
endif
MZSCHEME_OBJ
=
$(
OUTDIR
)
\i
f_mzsch.obj
!
endif
# Perl interface
!
ifdef
PERL
...
...
This diff is collapsed.
Click to expand it.
src/message.c
+
1
−
0
View file @
aab21c35
...
...
@@ -1052,6 +1052,7 @@ set_keep_msg(s)
keep_msg
=
vim_strsave
(
s
);
else
keep_msg
=
NULL
;
keep_msg_more
=
FALSE
;
}
/*
...
...
This diff is collapsed.
Click to expand it.
src/proto.h
+
2
−
2
View file @
aab21c35
...
...
@@ -240,11 +240,11 @@ extern char *vim_SelFile __ARGS((Widget toplevel, char *prompt, char *init_path,
#if defined(FEAT_PERL) && !defined(IN_PERL_FILE)
# define CV void
# ifdef __BORLANDC__
#
pragma option -pc
#
pragma option -pc
# endif
# include "if_perl.pro"
# ifdef __BORLANDC__
#
pragma option -p.
#
pragma option -p.
# endif
# include "if_perlsfio.pro"
#endif
...
...
This diff is collapsed.
Click to expand it.
src/vim.h
+
14
−
4
View file @
aab21c35
...
...
@@ -20,9 +20,9 @@
defined(DYNAMIC_ICONV) || \
defined(DYNAMIC_IME) || \
defined(XPM)
#
pragma option -pc
#
pragma option -pc
# else
#
pragma option -pr
#
pragma option -pr
# endif
#endif
...
...
@@ -1284,7 +1284,6 @@ enum hlf_value
#else
# define MB_STRICMP(d, s) STRICMP((d), (s))
# define MB_STRNICMP(d, s, n) STRNICMP((d), (s), (n))
# define transchar_byte(c) transchar(c)
#endif
#define STRCAT(d, s) strcat((char *)(d), (char *)(s))
...
...
@@ -1632,6 +1631,17 @@ typedef int VimClipboard; /* This is required for the prototypes. */
# define USE_MCH_ERRMSG
#endif
#ifndef FEAT_MBYTE
# define after_pathsep(b, p) vim_ispathsep(*((p) - 1))
# define transchar_byte(c) transchar(c)
#endif
#ifndef FEAT_LINEBREAK
/* Without the 'numberwidth' option line numbers are always 7 chars. */
# define number_width(x) 7
#endif
#include
"globals.h"
/* global variables and messages */
#ifdef FEAT_SNIFF
...
...
@@ -1678,7 +1688,7 @@ typedef int VimClipboard; /* This is required for the prototypes. */
/* stop using fastcall for Borland */
#if defined(__BORLANDC__) && defined(WIN32) && !defined(DEBUG)
#
pragma option -p.
#
pragma option -p.
#endif
#if defined(MEM_PROFILE)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment