diff options
Diffstat (limited to 'lisp/progmodes/cperl-mode.el')
-rw-r--r-- | lisp/progmodes/cperl-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/cperl-mode.el b/lisp/progmodes/cperl-mode.el index 5d4cf96d4c4..e9be1990ddc 100644 --- a/lisp/progmodes/cperl-mode.el +++ b/lisp/progmodes/cperl-mode.el @@ -1324,7 +1324,7 @@ the last)." (defvar cperl-sub-regexp (regexp-opt cperl-sub-keywords)) (defun cperl-char-ends-sub-keyword-p (char) - "Return T if CHAR is the last character of a perl sub keyword." + "Return t if CHAR is the last character of a perl sub keyword." (cl-loop for keyword in cperl-sub-keywords when (eq char (aref keyword (1- (length keyword)))) return t)) |