summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarald Jörg <haj@posteo.de>2023-07-02 13:00:21 +0200
committerHarald Jörg <haj@posteo.de>2023-07-02 13:06:50 +0200
commit777c4dfa30f33c5e1318cb601759ea4ef278c4f7 (patch)
tree6bc52847f0b7586e5d9db7f4e8820d421447511e
parentc2e4c68333d72a342bb531449412a424b3507a65 (diff)
downloademacs-777c4dfa30f33c5e1318cb601759ea4ef278c4f7.tar.gz
; cperl-mode: Fix a wide docstring which causes warnings when compiling
* lisp/progmodes/cperl-mode.el (defconst): Fix wide docstring for ' cperl--sloppy-signature-rx' (thanks Mattias Engdegård for reviewing)
-rw-r--r--lisp/progmodes/cperl-mode.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/progmodes/cperl-mode.el b/lisp/progmodes/cperl-mode.el
index 1abe57c15ea..0b3cee7d2d0 100644
--- a/lisp/progmodes/cperl-mode.el
+++ b/lisp/progmodes/cperl-mode.el
@@ -1363,7 +1363,9 @@ place.")
,cperl--ws*-rx
(or "," "=" "||=" "//=" ")"))
"A rx sequence for the begin of a signature with initializers.
-Initializers can contain almost all Perl constructs and thus can not be covered by regular expressions. This sequence captures enough to distinguish a signature from a prototype.")
+Initializers can contain almost all Perl constructs and thus can
+not be covered by regular expressions. This sequence captures
+enough to distinguish a signature from a prototype.")
(defconst cperl--package-rx
`(sequence (group "package")