From b02af55063943163fd6110bf51195a0678e02067 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Sun, 9 Jun 2019 10:12:43 -0700 Subject: [PATCH] Pacify compiler in paragraphs.el after lexical-binding * lisp/textmodes/paragraphs.el: Pacify byte compiler. --- lisp/textmodes/paragraphs.el | 3 +++ 1 file changed, 3 insertions(+) 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; -- 2.39.2