]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix recent simple.el compilation warning
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 24 Sep 2020 13:50:25 +0000 (15:50 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 24 Sep 2020 13:50:25 +0000 (15:50 +0200)
* lisp/simple.el (goto-line-relative): Suppress byte compilation
warning about goto-line.

lisp/simple.el

index 825fec380cb8441811ad3a5568e88d5cc9e9d978..7cb71530b36a4711696e6a79ff2933bfdd0b550b 100644 (file)
@@ -1319,7 +1319,8 @@ The line number is relative to the accessible portion of the narrowed
 buffer.  The argument BUFFER is the same as in the function `goto-line'."
   (declare (interactive-only forward-line))
   (interactive (goto-line-read-args t))
-  (goto-line line buffer t))
+  (with-suppressed-warnings ((interactive-only goto-line))
+    (goto-line line buffer t)))
 
 (defun count-words-region (start end &optional arg)
   "Count the number of words in the region.