diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2019-06-09 10:12:43 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-06-09 10:13:15 -0700 |
commit | b02af55063943163fd6110bf51195a0678e02067 (patch) | |
tree | f13b53ed52c7778f9602395a4ff1c92418cd1ad0 /lisp | |
parent | 1af27a17847fb02f35359e9bc03c77c1058f7a1d (diff) | |
download | emacs-b02af55063943163fd6110bf51195a0678e02067.tar.gz |
Pacify compiler in paragraphs.el after lexical-binding
* lisp/textmodes/paragraphs.el: Pacify byte compiler.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/textmodes/paragraphs.el | 3 |
1 files changed, 3 insertions, 0 deletions
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; |