From 506c3e3932c995953f8691c9618ecc2bc537352a Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Thu, 6 Jun 2019 21:57:19 +0200 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 d0fab36599..1d12e53c10 100644 --- a/lisp/textmodes/paragraphs.el +++ b/lisp/textmodes/paragraphs.el @@ -208,6 +208,9 @@ paragraph-ignore-fill-prefix :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.11.0