From: Stefan Kangas Date: Sun, 9 Jun 2019 17:12:43 +0000 (-0700) Subject: Pacify compiler in paragraphs.el after lexical-binding X-Git-Tag: emacs-27.0.90~2642 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b02af55063943163fd6110bf51195a0678e02067;p=emacs.git Pacify compiler in paragraphs.el after lexical-binding * lisp/textmodes/paragraphs.el: Pacify byte compiler. --- diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el index d0fab36599b..1d12e53c10a 100644 --- a/lisp/textmodes/paragraphs.el +++ b/lisp/textmodes/paragraphs.el @@ -208,6 +208,9 @@ This is desirable in modes where blank lines are the paragraph delimiters." :type 'boolean) (put 'paragraph-ignore-fill-prefix 'safe-local-variable 'booleanp) +;; Silence the compiler. +(defvar multiple-lines) + (defun forward-paragraph (&optional arg) "Move forward to end of paragraph. With argument ARG, do it ARG times;