]> git.eshelyaron.com Git - emacs.git/commitdiff
; Silence byte-compiler after previous commit
authorStefan Kangas <stefan@marxist.se>
Mon, 15 Mar 2021 08:16:47 +0000 (09:16 +0100)
committerStefan Kangas <stefan@marxist.se>
Mon, 15 Mar 2021 08:18:50 +0000 (09:18 +0100)
lisp/textmodes/refill.el

index 83bd7b7ade7c0c535bb55e4cd8c70862044f53bc..a6400c738a6b6ff96d36a2aca88d734c593a9d36 100644 (file)
@@ -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)))