0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.3.187

Problem:    The RISC OS port has obvious errors and is not being maintained.
Solution:   Remove the RISC OS files and code.
This commit is contained in:
Bram Moolenaar
2011-05-10 16:41:25 +02:00
parent 536681be5d
commit e60acc180b
22 changed files with 43 additions and 634 deletions

View File

@@ -1182,21 +1182,17 @@ qf_get_fnum(directory, fname)
if (fname == NULL || *fname == NUL) /* no file name */
return 0;
{
#ifdef RISCOS
/* Name is reported as `main.c', but file is `c.main' */
return ro_buflist_add(fname);
#else
char_u *ptr;
int fnum;
# ifdef VMS
#ifdef VMS
vms_remove_version(fname);
# endif
# ifdef BACKSLASH_IN_FILENAME
#endif
#ifdef BACKSLASH_IN_FILENAME
if (directory != NULL)
slash_adjust(directory);
slash_adjust(fname);
# endif
#endif
if (directory != NULL && !vim_isAbsName(fname)
&& (ptr = concat_fnames(directory, fname, TRUE)) != NULL)
{
@@ -1221,7 +1217,6 @@ qf_get_fnum(directory, fname)
return fnum;
}
return buflist_add(fname, 0);
#endif
}
}