gcl-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Gcl-devel] Ansi fixes in upcoming release


From: Matt Kaufmann
Subject: Re: [Gcl-devel] Ansi fixes in upcoming release
Date: Tue, 11 Oct 2016 22:28:36 -0500

Hi, Camm --

I think I'll be happy to use this.

                                    #+gcl
                                    (member (car dir)
                                            '(:ROOT ; for backward compatibility
                                              #+cltl2
                                              :ABSOLUTE)
                                            :test #'eq)
                                    #-gcl
                                    (eq (car dir) :ABSOLUTE)

-- Matt
> From: Camm Maguire <address@hidden>
> Date: Tue, 11 Oct 2016 17:09:21 -0400
> 
> Greetings!  I am considering pushing some pathname ansi fixes from
> masterr into the next gcl release.  Thie entails the following patch to
> #'canonical-unix-pathname in other-events.lisp:
> 
>                               (eq (car dir)
>                                   #+gcl :ROOT
>                                   #-gcl :ABSOLUTE))
> 
> becomes
> 
>                               (eq (car dir)
>                                   :ABSOLUTE))
> 
> I'd like to make something backward compatible.  Suggestions?
> 
> Take care,
> --
> Camm Maguire                                      address@hidden
> ==========================================================================
> "The earth is but one country, and mankind its citizens."  --  Baha'u'llah
> 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]