Function: perl-electric-noindent-p
perl-electric-noindent-p is a byte-compiled function defined in
perl-mode.el.gz.
Signature
(perl-electric-noindent-p CHAR)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/perl-mode.el.gz
(defun perl-electric-noindent-p (_char)
;; To reproduce the old behavior, ;, {, }, and : are made electric, but
;; we only want them to be electric at EOL.
(unless (or (bolp) (eolp)) 'no-indent))