From f2b0cfff93afeeb1b6d84bfce4bde83dbe4862cb Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Mon, 15 Mar 2021 09:16:47 +0100 Subject: [PATCH] ; Silence byte-compiler after previous commit --- lisp/textmodes/refill.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/textmodes/refill.el b/lisp/textmodes/refill.el index 83bd7b7ade7..a6400c738a6 100644 --- a/lisp/textmodes/refill.el +++ b/lisp/textmodes/refill.el @@ -87,7 +87,7 @@ "Portion of the most recently filled paragraph not needing filling. This is used to optimize refilling.") -(defun refill-adjust-ignorable-overlay (overlay afterp beg end &optional len) +(defun refill-adjust-ignorable-overlay (overlay afterp beg _end &optional _len) "Adjust OVERLAY to not include the about-to-be-modified region." (when (not afterp) (save-excursion @@ -152,7 +152,7 @@ ensures refilling is only done once per command that causes a change, regardless of the number of after-change calls from commands doing complex processing.") -(defun refill-after-change-function (beg end len) +(defun refill-after-change-function (_beg end _len) "Function for `after-change-functions' which just sets `refill-doit'." (unless undo-in-progress (setq refill-doit end))) -- 2.39.5