@@ -293,13 +293,13 @@ If BACKWARD is non-nil search backward."
293
293
(defun cider-repl-mode-beginning-of-defun (&optional arg )
294
294
(if (and arg (< arg 0 ))
295
295
(cider-repl-mode-end-of-defun (- arg))
296
- (dotimes (i (or arg 1 ))
296
+ (dotimes (_ (or arg 1 ))
297
297
(cider-repl-previous-prompt))))
298
298
299
299
(defun cider-repl-mode-end-of-defun (&optional arg )
300
300
(if (and arg (< arg 0 ))
301
301
(cider-repl-mode-beginning-of-defun (- arg))
302
- (dotimes (i (or arg 1 ))
302
+ (dotimes (_ (or arg 1 ))
303
303
(cider-repl-next-prompt))))
304
304
305
305
(defun cider-repl-beginning-of-defun ()
@@ -420,14 +420,12 @@ If BOL is non-nil, emit at the beginning of the line."
420
420
(cider-repl-emit-output-at-pos buffer string face cider-repl-input-start-mark bol)
421
421
(ansi-color-apply-on-region pos (point-max )))))
422
422
423
- (defun cider-repl-emit-output (buffer string &optional bol )
424
- " Using BUFFER, emit STRING as standard output.
425
- If BOL is non-nil, emit at the beginning of the line."
423
+ (defun cider-repl-emit-output (buffer string )
424
+ " Using BUFFER, emit STRING as standard output."
426
425
(cider-repl--emit-output buffer string 'cider-repl-output-face ))
427
426
428
- (defun cider-repl-emit-err-output (buffer string &optional bol )
429
- " Using BUFFER, emit STRING as error output.
430
- If BOL is non-nil, emit at the beginning of the line."
427
+ (defun cider-repl-emit-err-output (buffer string )
428
+ " Using BUFFER, emit STRING as error output."
431
429
(cider-repl--emit-output buffer string 'cider-repl-err-output-face ))
432
430
433
431
(defun cider-repl-emit-prompt (buffer )
0 commit comments