In article <[email protected]>,
   David Pitt <[email protected]> wrote:
> Gerald Holdsworth, on 7 Aug, wrote:
> > > Sounds like Mac OS X is escaping the hard space into %A0, like you would
> > > a URL for a web page. Is that an option you can turn off in Mac OS X?
> > 
> > If there is, I wouldn't know where to start looking. I've had a quick
> > glance over the System Preferences, but can't see anything.
>
> http://www.riscos.info/pipermail/rpcemu/2010-October/001168.html
>
> Oh well!!

You could ask Theo nicely to try applying this patch to his Mac build:

--- rpcemu/src/hostfs_org.c     2015-08-07 15:23:28.0 +0100
+++ rpcemu/src/hostfs.c 2015-08-07 15:23:29.0 +0100
@@ -289,6 +289,9 @@
     case '/':
       *host_path++ = '.';
       break;
+    case 160:
+      *host_path++ = 32;
+      break;
     default:
       *host_path++ = *path;
       break;

which ought to sort it out (I have no Mac, this is mostly guesswork),
Sprow.


_______________________________________________
Rpcemu mailing list
[email protected]
http://www.riscos.info/cgi-bin/mailman/listinfo/rpcemu

Reply via email to