Skip to content

Commit

Permalink
Fix random character and nrepl require
Browse files Browse the repository at this point in the history
  • Loading branch information
Gareth Jones committed Oct 25, 2012
1 parent 41102f5 commit a7ae012
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clojure-test-mode.el
Expand Up @@ -123,7 +123,7 @@
(require 'cl)
(require 'clojure-mode)
(require 'which-func)
(require 'nrepl nil t)
(require 'nrepl)

(declare-function nrepl-repl-buffer "nrepl.el")
(declare-function nrepl-make-response-handler "nrepl.el")
Expand Down Expand Up @@ -406,7 +406,7 @@ Retuns the problem overlay if such a position is found, otherwise nil."
(problem (clojure-test-find-next-problem here)))
(if problem
(goto-char problem)
n (goto-char here)
(goto-char here)
(message "No next problem."))))

(defun clojure-test-previous-problem ()
Expand Down

0 comments on commit a7ae012

Please sign in to comment.