Skip to content

Commit

Permalink
Denote properly an unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatsov committed Nov 3, 2017
1 parent ab1b205 commit deb35d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clojure-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ replacement for `cljr-expand-let`."
;; `electric-layout-post-self-insert-function' prevents indentation in strings
;; and comments, force indentation in docstrings:
(add-hook 'electric-indent-functions
(lambda (char) (if (clojure-in-docstring-p) 'do-indent))))
(lambda (_char) (if (clojure-in-docstring-p) 'do-indent))))

(defcustom clojure-verify-major-mode t
"If non-nil, warn when activating the wrong `major-mode'."
Expand Down

0 comments on commit deb35d9

Please sign in to comment.