summaryrefslogtreecommitdiff
path: root/src/ex_cmds2.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2011-05-10 16:41:25 +0200
committerBram Moolenaar <Bram@vim.org>2011-05-10 16:41:25 +0200
commite60acc180b1886825246d194a2b9ce5d9bb91b2c (patch)
treef5ab918ed519ca9ae21ef5d9ebf86649393b6200 /src/ex_cmds2.c
parent536681be5deba615f5ebe3edc3ce85ef01830876 (diff)
downloadvim-e60acc180b1886825246d194a2b9ce5d9bb91b2c.zip
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.
Diffstat (limited to 'src/ex_cmds2.c')
-rw-r--r--src/ex_cmds2.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c
index 78460fbf6..0fe9b32f6 100644
--- a/src/ex_cmds2.c
+++ b/src/ex_cmds2.c
@@ -500,18 +500,10 @@ dbg_parsearg(arg, gap)
/* Expand the file name in the same way as do_source(). This means
* doing it twice, so that $DIR/file gets expanded when $DIR is
* "~/dir". */
-#ifdef RISCOS
- q = mch_munge_fname(p);
-#else
q = expand_env_save(p);
-#endif
if (q == NULL)
return FAIL;
-#ifdef RISCOS
- p = mch_munge_fname(q);
-#else
p = expand_env_save(q);
-#endif
vim_free(q);
if (p == NULL)
return FAIL;
@@ -2940,11 +2932,7 @@ do_source(fname, check_other, is_vimrc)
proftime_T wait_start;
#endif
-#ifdef RISCOS
- p = mch_munge_fname(fname);
-#else
p = expand_env_save(fname);
-#endif
if (p == NULL)
return retval;
fname_exp = fix_fname(p);