Comment 15 for bug 961468

Revision history for this message
Richard Stanton (a-stanton) wrote :

In r907, I see there's some code in py-temp-directory checking for system type,

 (and (eq (system-type 'darwin))
             (funcall ok "/var/folders"))
        ((and (or (eq (system-type 'ms-dos))(eq (system-type 'ms-dos))(eq (system-type 'windows-nt)))
              (Funcall ok (concat "c:" (py-separator-char) "Users" ))))
        (funcall ok ".")

[...]

Is this OK? Instead of

(eq (system-type 'darwin))

shouldn't it be

(eq system-type 'darwin), etc.?