Function: fortran-abbrev-start

fortran-abbrev-start is an interactive and byte-compiled function defined in fortran.el.gz.

Signature

(fortran-abbrev-start)

Documentation

Typing ;<f1> (help-command) or ;? lists all the Fortran abbrevs.

Any other key combination is executed normally.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/fortran.el.gz
(defun fortran-abbrev-start ()
  "Typing ;\\[help-command] or ;? lists all the Fortran abbrevs.
Any other key combination is executed normally."
  (interactive "*")
  (insert last-command-event)
  (let ((event (read-event)))
    ;; Insert char if not equal to `?', or if abbrev-mode is off.
    (if (and abbrev-mode (or (eq event ??) (eq event help-char)
                             (memq event help-event-list)))
        (fortran-abbrev-help)
      (push event unread-command-events))))