Function: f90-electric-insert
f90-electric-insert is an interactive and byte-compiled function
defined in f90.el.gz.
Signature
(f90-electric-insert &optional ARG)
Documentation
Change keyword case and auto-fill line as operators are inserted.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/f90.el.gz
(defun f90-electric-insert (&optional arg)
"Change keyword case and auto-fill line as operators are inserted."
(interactive "*p")
(self-insert-command arg)
(if auto-fill-function (f90-do-auto-fill) ; also updates line
(f90-update-line)))