Skip to content

Commit 971f62b

Browse files
chaosbbatsov
chaos
authored andcommitted
Remove unused FIXME comments for unused params
1 parent 3972347 commit 971f62b

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

cider-browse-ns.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ be displayed."
223223
(cider-find-ns nil value)
224224
(cider-find-var current-prefix-arg value))))
225225

226-
(defun cider-browse-ns-handle-mouse (_event) ;FIXME: Unused arg!
226+
(defun cider-browse-ns-handle-mouse (_event)
227227
"Handle mouse click EVENT."
228228
(interactive "e")
229229
(cider-browse-ns-operate-at-point))

cider-classpath.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
(line (buffer-substring-no-properties bol eol)))
8181
(find-file-other-window line)))
8282

83-
(defun cider-classpath-handle-mouse (_event) ;FIXME: Unused arg!
83+
(defun cider-classpath-handle-mouse (_event)
8484
"Handle mouse click EVENT."
8585
(interactive "e")
8686
(cider-classpath-operate-on-point))

cider-repl-history.el

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,6 @@ it's turned on."
334334
"Return overlay at POSITION that has property `cider-repl-history-target'.
335335
If no such overlay, raise an error unless NO-ERROR is true, in which
336336
case return nil."
337-
;; FIXME: `position' is not used!
338337
(let ((ovs (overlays-at (point))))
339338
(catch 'cider-repl-history-target-overlay-at
340339
(dolist (ov ovs)
@@ -364,7 +363,6 @@ Also kills *cider-repl-history*."
364363
;; generic paste tool, but for inserting a previous command into an
365364
;; interpreter, I felt the only useful option would be inserting it at the end
366365
;; and quitting the history buffer, so that is all that's provided.
367-
;; FIXME: `buf' is not used!
368366
(let ((str (cider-repl-history-current-string pt)))
369367
(cider-repl-history-quit)
370368
(with-selected-window cider-repl-history-repl-window

0 commit comments

Comments
 (0)