Tweak python-hideshow-forward-sexp-function warning avoidance

* lisp/progmodes/python.el
(python-hideshow-forward-sexp-function): Avoid compilation warning
in a more standard way.  Problem reported in
https://thedailywtf.com/articles/the-programmer-s-motto-and-other-comments
This commit is contained in:
Lars Ingebrigtsen 2021-09-15 15:53:53 +02:00
parent fbd0f194c5
commit b2e3669d96

View file

@ -4775,10 +4775,9 @@ Interactively, prompt for symbol."
;;; Hideshow
(defun python-hideshow-forward-sexp-function (arg)
(defun python-hideshow-forward-sexp-function (_arg)
"Python specific `forward-sexp' function for `hs-minor-mode'.
Argument ARG is ignored."
arg ; Shut up, byte compiler.
(python-nav-end-of-defun)
(unless (python-info-current-line-empty-p)
(backward-char)))