aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorStefan Kangas2021-03-15 09:16:47 +0100
committerStefan Kangas2021-03-15 09:18:50 +0100
commitf2b0cfff93afeeb1b6d84bfce4bde83dbe4862cb (patch)
treebba5553e661cc4aebc2337a06b68305c35af2544 /lisp/textmodes
parentb8b8890796e731180afb4f286addcda10263baf2 (diff)
downloademacs-f2b0cfff93afeeb1b6d84bfce4bde83dbe4862cb.tar.gz
emacs-f2b0cfff93afeeb1b6d84bfce4bde83dbe4862cb.zip
; Silence byte-compiler after previous commit
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/refill.el4
1 files 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 @@
87 "Portion of the most recently filled paragraph not needing filling. 87 "Portion of the most recently filled paragraph not needing filling.
88This is used to optimize refilling.") 88This is used to optimize refilling.")
89 89
90(defun refill-adjust-ignorable-overlay (overlay afterp beg end &optional len) 90(defun refill-adjust-ignorable-overlay (overlay afterp beg _end &optional _len)
91 "Adjust OVERLAY to not include the about-to-be-modified region." 91 "Adjust OVERLAY to not include the about-to-be-modified region."
92 (when (not afterp) 92 (when (not afterp)
93 (save-excursion 93 (save-excursion
@@ -152,7 +152,7 @@ ensures refilling is only done once per command that causes a change,
152regardless of the number of after-change calls from commands doing 152regardless of the number of after-change calls from commands doing
153complex processing.") 153complex processing.")
154 154
155(defun refill-after-change-function (beg end len) 155(defun refill-after-change-function (_beg end _len)
156 "Function for `after-change-functions' which just sets `refill-doit'." 156 "Function for `after-change-functions' which just sets `refill-doit'."
157 (unless undo-in-progress 157 (unless undo-in-progress
158 (setq refill-doit end))) 158 (setq refill-doit end)))