Function: opascal-is-file

opascal-is-file is a byte-compiled function defined in opascal.el.gz.

Signature

(opascal-is-file PATH)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/opascal.el.gz
(defun opascal-is-file (path)
  ;; True if the specified file exists as a file.
  (let ((attributes (file-attributes path)))
    (and attributes (null (car attributes)))))