Enrico Scholz <enrico.scholz(a)wirtschaft.tu-chemnitz.de> writes:
The unless body should be executed only if remote connections are
allowed and it's a remote path, right?
No, the body is a test whether the file we are looking for exists at
this location so it should be executed unless we are not allowed to
look there. In other words the body should be executed unless it is
both a remote path and no-remote is non-nil. That is exactly what I
expressed in that statement.
no-remote caar entries your (unless ... my (if ...
------------------------------------------------------------------
nil nil yes no
nil other yes yes
t nil yes no
t other no no
The results from the "(unless" table are exactly what was wanted.
Jan