+1999-11-09 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * poe-18.el (file-executable-p): Returns nil if the file does not
+ exist.
+
1999-11-08 Yuuichi Teranishi <teranisi@gohome.org>
* poe-18.el (put-text-property, next-property-change,
"Return t if FILENAME can be executed by you.
For a directory, this means you can access files in that directory.
\[poe-18.el; EMACS 19 emulating function]"
- (let ((process (start-process "test" nil "test" "-x" filename)))
- (while (eq 'run (process-status process)))
- (zerop (process-exit-status process))))
+ (if (file-exists-p filename)
+ (let ((process (start-process "test" nil "test" "-x" filename)))
+ (while (eq 'run (process-status process)))
+ (zerop (process-exit-status process)))))
;;; @ Display Features