From ... From: Erik Naggum Subject: Re: A portable DIRECTORY-P. Re: Here we go again. More CMUCL/ACL pathname differences. Date: 1999/01/13 Message-ID: <3125217976202816@naggum.no>#1/1 X-Deja-AN: 432101685 References: <778kqn$2b2$1@nnrp1.dejanews.com> <77bdqi$9fk$1@nnrp1.dejanews.com> <3125045622004774@naggum.no> <77e4e3$jrj$1@nnrp1.dejanews.com> <87d84lpaxr.fsf_-_@2xtreme.net> <3125142331394422@naggum.no> <877lususje.fsf@2xtreme.net> <3125173018981162@naggum.no> <87u2xvua6m.fsf@2xtreme.net> mail-copies-to: never Organization: Naggum Software; +47 8800 8879; http://www.naggum.no Newsgroups: comp.lang.lisp * cbarry@2xtreme.net (Christopher R. Barry) | Because in practice most of the time it doesn't make a difference for | many of the functions if their argument is logical-pathname or a | SIMPLE-STRING of type CHARACTER that denotes a logical-pathname | namestring (if that's even the proper terminology). the technical term is pathname designator. I love designators, myself, but I go out of my way to read the specification and know when I'm using a designator and when I'm using the real object, specifically by knowing what types the function _really_ takes. I think this is much easier than having to deal with the obvious problems resulting from confusing a type with the set of types of designators for that type. | I've gotten into the bad habit of using them interchangably, but now I'm | less assuming. you should be able to, most of the time, but when you ask for specific details about the _type_, you can no longer assume that some function will magically "know" that you want what it might designate to some other function. "lisp:code;fun" is a string and nothing but a string. a string is a pathname designator and functions that expect a pathname will accept a string to make your life easier. when this designator business makes people's lives harder, it's time for those people to stop using them and go back to using the real object types and to read the spec to see what kind of argument types the functions they call actually take. I think good Common Lisp programmers implement designators to make their own lives easier, too, but it takes a little extra effort in the code to be able to handle designators, but I'd imagine that some macro or other would take care of these things. | I find there are many pitfalls like this in this huge language (or small | language with huge standard library if that's how you prefer to look at | it). one man's convenience is another man's pitfall, obviously, but it's not something that happens by random. you chose to ignore the specification and stumble ahead with whatever "works". that's how pitfalls are made. | > do you expect (null "()") to return true, too? | | Hmm... no. Maybe (null (read-from-string "()")) though. I expect you see the need to call PARSE-NAMESTRING on the string, too. #:Erik