Function: f90-abbrev-help

f90-abbrev-help is an interactive and byte-compiled function defined in f90.el.gz.

Signature

(f90-abbrev-help)

Documentation

List the currently defined abbrevs in F90 mode.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/f90.el.gz
(defun f90-abbrev-help ()
  "List the currently defined abbrevs in F90 mode."
  (interactive)
  (message "Listing abbrev table...")
  (display-buffer (f90-prepare-abbrev-list-buffer))
  (message "Listing abbrev table...done"))