Function: forms-find-file

forms-find-file is an autoloaded, interactive and byte-compiled function defined in forms.el.gz.

Signature

(forms-find-file FN)

Documentation

Visit a file in Forms mode.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/forms.el.gz
;;; Start and exit

;;;###autoload
(defun forms-find-file (fn)
  "Visit a file in Forms mode."
  (interactive "fForms file: ")
  (let ((enable-local-eval t)
	(enable-local-variables t))
    (find-file-read-only fn)
    (or forms--mode-setup (forms-mode t))))