Variable: perl-flymake-command
perl-flymake-command is a customizable variable defined in
perl-mode.el.gz.
Value
("perl" "-w" "-c")
Documentation
External tool used to check Perl source code.
This is a non-empty list of strings: the checker tool possibly followed by required arguments. Once launched it will receive the Perl source to be checked as its standard input.
This variable was added, or its default value changed, in Emacs 26.1.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/perl-mode.el.gz
;;; Flymake support
(defcustom perl-flymake-command '("perl" "-w" "-c")
"External tool used to check Perl source code.
This is a non-empty list of strings: the checker tool possibly
followed by required arguments. Once launched it will receive
the Perl source to be checked as its standard input."
:version "26.1"
:type '(repeat string))