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
a2442437
Commit
a2442437
authored
17 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
updated for version 7.0-228
parent
053b9fa9
No related branches found
Branches containing commit
Tags
v7.0.228
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/os_unix.c
+13
-0
13 additions, 0 deletions
src/os_unix.c
src/version.c
+2
-0
2 additions, 0 deletions
src/version.c
with
15 additions
and
0 deletions
src/os_unix.c
+
13
−
0
View file @
a2442437
...
@@ -55,6 +55,12 @@
...
@@ -55,6 +55,12 @@
# endif
# endif
#endif
#endif
#ifdef __CYGWIN__
# ifndef WIN32
# include <sys/cygwin.h>
/* for cygwin_conv_to_posix_path() */
# endif
#endif
#if defined(HAVE_SELECT)
#if defined(HAVE_SELECT)
extern
int
select
__ARGS
((
int
,
fd_set
*
,
fd_set
*
,
fd_set
*
,
struct
timeval
*
));
extern
int
select
__ARGS
((
int
,
fd_set
*
,
fd_set
*
,
fd_set
*
,
struct
timeval
*
));
#endif
#endif
...
@@ -2230,6 +2236,13 @@ mch_FullName(fname, buf, len, force)
...
@@ -2230,6 +2236,13 @@ mch_FullName(fname, buf, len, force)
fname
=
vms_fixfilename
(
fname
);
fname
=
vms_fixfilename
(
fname
);
#endif
#endif
#ifdef __CYGWIN__
/*
* This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
*/
cygwin_conv_to_posix_path
(
fname
,
fname
);
#endif
/* expand it if forced or not an absolute path */
/* expand it if forced or not an absolute path */
if
(
force
||
!
mch_isFullName
(
fname
))
if
(
force
||
!
mch_isFullName
(
fname
))
{
{
...
...
This diff is collapsed.
Click to expand it.
src/version.c
+
2
−
0
View file @
a2442437
...
@@ -666,6 +666,8 @@ static char *(features[]) =
...
@@ -666,6 +666,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 */
/**/
228
,
/**/
/**/
227
,
227
,
/**/
/**/
...
...
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