[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Chicken-hackers] [PATCH 4/4] files split-directory: don't split on
From: |
Florian Zumbiehl |
Subject: |
Re: [Chicken-hackers] [PATCH 4/4] files split-directory: don't split on backslashes on non-windows |
Date: |
Fri, 15 Mar 2013 12:02:28 +0100 |
User-agent: |
Mutt/1.5.20 (2009-06-14) |
Hi,
> > - (string-split dir "/\\" keep?) ) )
> > + (string-split dir (if (eq? (build-platform) 'mingw32) "/\\" "/")
> > keep?) ) )
> >
> > ;; Directory string or list only contains path-separators
> > ;; and/or current-directory (".") names.
>
> This should rather use ##sys#windows-platform IMHO.
Any hints what the exact semantics are? I copied that from
normalize-pathname, but I don't really have a clue whether that's actually
correct. Or maybe normalize-pathname should also be changed?
Regards, Florian
- [Chicken-hackers] [PATCH 1/4] csi dirseparator?: don't treat backslash as dir separator on non-windows, Florian Zumbiehl, 2013/03/15
- [Chicken-hackers] [PATCH 4/4] files split-directory: don't split on backslashes on non-windows, Florian Zumbiehl, 2013/03/15
- [Chicken-hackers] [PATCH 3/4] Remove ##sys#expand-home-path., Florian Zumbiehl, 2013/03/15
- Re: [Chicken-hackers] [PATCH 3/4] Remove ##sys#expand-home-path., Christian Kellermann, 2013/03/15
- Re: [Chicken-hackers] [PATCH 3/4] Remove ##sys#expand-home-path., Peter Bex, 2013/03/15
- Re: [Chicken-hackers] [PATCH 3/4] Remove ##sys#expand-home-path., Alaric Snell-Pym, 2013/03/15