From: Lars Ingebrigtsen Date: Wed, 15 Sep 2021 13:53:53 +0000 (+0200) Subject: Tweak python-hideshow-forward-sexp-function warning avoidance X-Git-Tag: emacs-28.0.90~949 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b2e3669d963667890f7b55158c3b6b51a07259d2;p=emacs.git 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 --- diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index fae350dea24..19b79b69197 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -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)))